Skip to content

Commit 3d7a1c9

Browse files
committed
Auto merge of #61587 - alexcrichton:distcheck-no-assertions, r=pietroalbini
ci: Disable LLVM/debug assertions for distcheck The purpose of distcheck is to test `./x.py test` from a tarball, not to test that all assertions pass all the time. These assertions are largely just redundant with other builders, so skip the assertions for now and save a good chunk of time on CI. cc #61185
2 parents 3f511ad + 27ea407 commit 3d7a1c9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/ci/docker/x86_64-gnu-distcheck/Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,10 @@ RUN sh /scripts/sccache.sh
2121
ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu --set rust.ignore-git=false
2222
ENV SCRIPT python2.7 ../x.py test distcheck
2323
ENV DIST_SRC 1
24+
25+
# The purpose of this builder is to test that we can `./x.py test` successfully
26+
# from a tarball, not to test LLVM/rustc's own set of assertions. These cause a
27+
# significant hit to CI compile time (over a half hour as observed in #61185),
28+
# so disable assertions for this builder.
29+
ENV NO_LLVM_ASSERTIONS=1
30+
ENV NO_DEBUG_ASSERTIONS=1

0 commit comments

Comments
 (0)