Skip to content

Commit

Permalink
Disable LLVM/debug assertions in gnu-full-bootstrap
Browse files Browse the repository at this point in the history
This builder already is very close to the 2 hour mark and the debug
assertions aren't really buying us anything over what all the other
containers are enabling, so let's disable them for this slow builder.
  • Loading branch information
alexcrichton committed May 22, 2019
1 parent 37ff5d3 commit 194679c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ci/docker/x86_64-gnu-full-bootstrap/Dockerfile
Expand Up @@ -20,3 +20,9 @@ ENV RUST_CONFIGURE_ARGS \
--build=x86_64-unknown-linux-gnu \
--enable-full-bootstrap
ENV SCRIPT python2.7 ../x.py build

# In general this just slows down the build and we're just a smoke test that
# a full bootstrap works in general, so there's not much need to take this
# penalty in build times.
ENV NO_LLVM_ASSERTIONS 1
ENV NO_DEBUG_ASSERTIONS 1

0 comments on commit 194679c

Please sign in to comment.