From: Louis Dionne Date: Tue, 7 Feb 2023 02:59:19 +0000 (-0800) Subject: [libc++] Export CXX and CC env vars in format and documentation CI jobs X-Git-Tag: upstream/17.0.6~18395 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3058cb74338edbf1b7eec495ba2436e94d2d48fa;p=platform%2Fupstream%2Fllvm.git [libc++] Export CXX and CC env vars in format and documentation CI jobs This is necessary now that the Docker images don't contain unversionned clang binaries. --- diff --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml index 0189449..2722286 100644 --- a/libcxx/utils/ci/buildkite-pipeline.yml +++ b/libcxx/utils/ci/buildkite-pipeline.yml @@ -37,6 +37,8 @@ steps: - "**/clang-format.patch" env: GIT_CLANG_FORMAT: "/usr/bin/git-clang-format-${LLVM_STABLE_VERSION}" + CC: "clang-${LLVM_HEAD_VERSION}" + CXX: "clang++-${LLVM_HEAD_VERSION}" agents: queue: "libcxx-builders" os: "linux" @@ -53,6 +55,9 @@ steps: artifact_paths: - "**/generated_output.patch" - "**/generated_output.status" + env: + CC: "clang-${LLVM_HEAD_VERSION}" + CXX: "clang++-${LLVM_HEAD_VERSION}" agents: queue: "libcxx-builders" os: "linux" @@ -66,6 +71,9 @@ steps: command: "libcxx/utils/ci/run-buildbot documentation" artifact_paths: - "**/test-results.xml" + env: + CC: "clang-${LLVM_HEAD_VERSION}" + CXX: "clang++-${LLVM_HEAD_VERSION}" agents: queue: "libcxx-builders" os: "linux"