Skip to content

Commit fb31028

Browse files
Revert "[CI] Disable check-lldb on premerge runners"
This reverts commit f092dfb. The offending commit was reverted for now, so reenabling. llvm/llvm-project#165887 will have updates.
1 parent dfbe200 commit fb31028

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,6 @@ def start_build(
9797
def start_build_linux(commit_sha: str, bucket_name: str, k8s_client) -> str:
9898
"""Starts a pod to build/test on Linux at the specified SHA."""
9999
pod_name = f"build-{commit_sha}"
100-
# TODO(boomanaiden154): Reenable Windows when
101-
# https://github.com/llvm/llvm-project/issues/165887 is fixed.
102100
commands = [
103101
"set -ex",
104102
"git clone --depth 100 https://github.com/llvm/llvm-project",
@@ -112,7 +110,7 @@ def start_build_linux(commit_sha: str, bucket_name: str, k8s_client) -> str:
112110
"export SCCACHE_GCS_RW_MODE=READ_WRITE",
113111
"export SCCACHE_IDLE_TIMEOUT=0",
114112
"sccache --start-server",
115-
'./.ci/monolithic-linux.sh "bolt;clang;clang-tools-extra;flang;libclc;lld;lldb;llvm;mlir;polly" "check-bolt check-clang check-clang-tools check-flang check-lld check-llvm check-mlir check-polly check-lit" "compiler-rt;flang-rt;libc;libcxx;libcxxabi;libunwind" "check-compiler-rt check-flang-rt check-libc" "check-cxx check-cxxabi check-unwind" "OFF"',
113+
'./.ci/monolithic-linux.sh "bolt;clang;clang-tools-extra;flang;libclc;lld;lldb;llvm;mlir;polly" "check-bolt check-clang check-clang-tools check-flang check-lld check-lldb check-llvm check-mlir check-polly check-lit" "compiler-rt;flang-rt;libc;libcxx;libcxxabi;libunwind" "check-compiler-rt check-flang-rt check-libc" "check-cxx check-cxxabi check-unwind" "OFF"',
116114
"python .ci/cache_lit_timing_files.py upload",
117115
"echo BUILD FINISHED",
118116
]

0 commit comments

Comments
 (0)