[libcxx-commits] [libcxx] 4de9936 - [libc++][CI] Escape quoting.
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Tue May 30 22:55:44 PDT 2023
Author: Mark de Wever
Date: 2023-05-31T07:55:05+02:00
New Revision: 4de9936fe0e31ceb817db1cdfc5dd4af2d44e01e
URL: https://github.com/llvm/llvm-project/commit/4de9936fe0e31ceb817db1cdfc5dd4af2d44e01e
DIFF: https://github.com/llvm/llvm-project/commit/4de9936fe0e31ceb817db1cdfc5dd4af2d44e01e.diff
LOG: [libc++][CI] Escape quoting.
This should fix the Clang CI.
Added:
Modified:
libcxx/utils/ci/buildkite-pipeline-clang.yml
Removed:
################################################################################
diff --git a/libcxx/utils/ci/buildkite-pipeline-clang.yml b/libcxx/utils/ci/buildkite-pipeline-clang.yml
index 323f4cf80b89..b951c3bbf2b2 100644
--- a/libcxx/utils/ci/buildkite-pipeline-clang.yml
+++ b/libcxx/utils/ci/buildkite-pipeline-clang.yml
@@ -23,7 +23,7 @@ steps:
# We use Release here to avoid including debug information. Otherwise, the clang binary is very large, which
# is problematic because we need to upload the artifacts for other jobs to use. This may seem like nothing,
# but with the number of jobs we run daily, this can result in thousands of GB of network I/O.
- - "cmake -S llvm -B build -G Ninja -DCMAKE_CXX_COMPILER_LAUNCHER="ccache" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install -DLLVM_ENABLE_PROJECTS=\"clang;compiler-rt\""
+ - "cmake -S llvm -B build -G Ninja -DCMAKE_CXX_COMPILER_LAUNCHER=\"ccache\" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install -DLLVM_ENABLE_PROJECTS=\"clang;compiler-rt\""
- "ninja -C build install-clang install-clang-resource-headers"
- "ccache -s"
- "tar -cJvf install.tar.xz install/"
More information about the libcxx-commits
mailing list