]> git.lizzy.rs Git - rust.git/commitdiff
Add debug asserts to PR builder
authorMark Rousskov <mark.simulacrum@gmail.com>
Wed, 5 Aug 2020 21:43:59 +0000 (17:43 -0400)
committerMark Rousskov <mark.simulacrum@gmail.com>
Fri, 6 Nov 2020 19:32:14 +0000 (14:32 -0500)
This is helpful to catch slightly more bugs before things hit main CI, and
doesn't cost too much extra CI time.

src/ci/docker/host-x86_64/x86_64-gnu-llvm-8/Dockerfile

index 34c6396b7b59fe32c90e25be429556ba0ad9dac5..bd046f802c8d05292ef9576c0643631981d1fe9f 100644 (file)
@@ -57,9 +57,3 @@ ENV SCRIPT python2.7 ../x.py --stage 2 test --exclude src/tools/tidy && \
            python2.7 ../x.py --stage 2 test src/test/ui --pass=check && \
            # Run tidy at the very end, after all the other tests.
            python2.7 ../x.py --stage 2 test src/tools/tidy
-
-# The purpose of this container isn't to test with debug assertions and
-# this is run on all PRs, so let's get speedier builds by disabling these extra
-# checks.
-ENV NO_DEBUG_ASSERTIONS=1
-ENV NO_LLVM_ASSERTIONS=1