diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2019-06-06 08:01:11 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2019-06-06 08:01:11 -0700 |
| commit | 27ea407c72f1d518146285796add5baf4abc949e (patch) | |
| tree | bda232df7474194e76f97b45531b55fd7ccf92cb | |
| parent | 817d2feb13dd1faad47ec699cd473b8be2093ec9 (diff) | |
| download | rust-27ea407c72f1d518146285796add5baf4abc949e.tar.gz rust-27ea407c72f1d518146285796add5baf4abc949e.zip | |
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
| -rw-r--r-- | src/ci/docker/x86_64-gnu-distcheck/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ci/docker/x86_64-gnu-distcheck/Dockerfile b/src/ci/docker/x86_64-gnu-distcheck/Dockerfile index f16dd980998..364f45aba2c 100644 --- a/src/ci/docker/x86_64-gnu-distcheck/Dockerfile +++ b/src/ci/docker/x86_64-gnu-distcheck/Dockerfile @@ -21,3 +21,10 @@ RUN sh /scripts/sccache.sh ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu --set rust.ignore-git=false ENV SCRIPT python2.7 ../x.py test distcheck ENV DIST_SRC 1 + +# The purpose of this builder is to test that we can `./x.py test` successfully +# from a tarball, not to test LLVM/rustc's own set of assertions. These cause a +# significant hit to CI compile time (over a half hour as observed in #61185), +# so disable assertions for this builder. +ENV NO_LLVM_ASSERTIONS=1 +ENV NO_DEBUG_ASSERTIONS=1 |
