Skip to content

Commit 9243d53

Browse files
[CI] Set POSTCOMMIT_CI variable in pods
This ensures that we will be printing the correct output type after llvm/llvm-project#152197 lands. Reviewers: cmtice Pull Request: #541
1 parent ecfc37b commit 9243d53

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

zorg/buildbot/builders/annotated/premerge/dispatch_job.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def start_build_linux(commit_sha: str, k8s_client) -> str:
6464
f"git checkout ${commit_sha}",
6565
"export CC=clang",
6666
"export CXX=clang++",
67+
"expot POSTCOMMIT_CI=1",
6768
'./.ci/monolithic-linux.sh "bolt;clang;clang-tools-extra;flang;libclc;lld;lldb;llvm;mlir;polly" "check-bolt check-clang check-clang-cir check-clang-tools check-flang check-lld check-lldb check-llvm check-mlir check-polly" "compiler-rt;libc;libcxx;libcxxabi;libunwind" "check-compiler-rt check-libc" "check-cxx check-cxxabi check-unwind" "OFF"'
6869
"echo BUILD FINISHED",
6970
]
@@ -83,6 +84,7 @@ def start_build_windows(commit_sha: str, k8s_client):
8384
"git clone --depth 100 https://github.com/llvm/llvm-project",
8485
"cd llvm-project",
8586
f"git checkout ${commit_sha}",
87+
"export POSTCOMMIT_CI=1",
8688
'.ci/monolithic-windows.sh "clang;clang-tools-extra;libclc;lld;llvm;mlir;polly" "check-clang check-clang-cir check-clang-tools check-lld check-llvm check-mlir check-polly"',
8789
"echo BUILD FINISHED",
8890
]

0 commit comments

Comments
 (0)