diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-05-23 08:37:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-23 08:37:14 +0200 |
| commit | 25c1dca1b3ad1b12068533a6701323f022a02fb2 (patch) | |
| tree | 68e9eb9383d57c9c00efc857892d98df8dcdba98 | |
| parent | e4e97caba03c00b7d37ec350990a94a819f3fdfc (diff) | |
| parent | 194679c9dafa1864aaa979547253adf61d2514cc (diff) | |
| download | rust-25c1dca1b3ad1b12068533a6701323f022a02fb2.tar.gz rust-25c1dca1b3ad1b12068533a6701323f022a02fb2.zip | |
Rollup merge of #61043 - alexcrichton:less-full-bootstrap, r=sanxiyn
Disable LLVM/debug assertions in gnu-full-bootstrap 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.
| -rw-r--r-- | src/ci/docker/x86_64-gnu-full-bootstrap/Dockerfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ci/docker/x86_64-gnu-full-bootstrap/Dockerfile b/src/ci/docker/x86_64-gnu-full-bootstrap/Dockerfile index 70390c2ac1d..a157fee16cf 100644 --- a/src/ci/docker/x86_64-gnu-full-bootstrap/Dockerfile +++ b/src/ci/docker/x86_64-gnu-full-bootstrap/Dockerfile @@ -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 |
