about summary refs log tree commit diff
path: root/src/ci/docker
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2019-05-22 08:02:19 -0700
committerAlex Crichton <alex@alexcrichton.com>2019-05-22 08:02:19 -0700
commit194679c9dafa1864aaa979547253adf61d2514cc (patch)
tree64c3bf7e0eca6efc97d70b3f64818b81dec86859 /src/ci/docker
parent37ff5d388f8c004ca248adb635f1cc84d347eda0 (diff)
downloadrust-194679c9dafa1864aaa979547253adf61d2514cc.tar.gz
rust-194679c9dafa1864aaa979547253adf61d2514cc.zip
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.
Diffstat (limited to 'src/ci/docker')
-rw-r--r--src/ci/docker/x86_64-gnu-full-bootstrap/Dockerfile6
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