about summary refs log tree commit diff
path: root/src/ci/docker
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-08-21 17:43:27 +0000
committerbors <bors@rust-lang.org>2020-08-21 17:43:27 +0000
commitde521cbb303c08febd9fa3755caccd4f3e491ea3 (patch)
treea23ff97feb1de9249af7f9290744efbd94040a5b /src/ci/docker
parentefec7cde9339068f7289853a112da51025c2ef65 (diff)
parentb985c29d539e04a416c605f1d80938229b528be0 (diff)
downloadrust-de521cbb303c08febd9fa3755caccd4f3e491ea3.tar.gz
rust-de521cbb303c08febd9fa3755caccd4f3e491ea3.zip
Auto merge of #75708 - JohnTitor:stay-cool-full-bootstrap-builder, r=pietroalbini
Remove the full-bootstrap builder from CI

Fixes #75198
Diffstat (limited to 'src/ci/docker')
-rw-r--r--src/ci/docker/host-x86_64/x86_64-gnu-full-bootstrap/Dockerfile30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/ci/docker/host-x86_64/x86_64-gnu-full-bootstrap/Dockerfile b/src/ci/docker/host-x86_64/x86_64-gnu-full-bootstrap/Dockerfile
deleted file mode 100644
index 8648e5ed7a4..00000000000
--- a/src/ci/docker/host-x86_64/x86_64-gnu-full-bootstrap/Dockerfile
+++ /dev/null
@@ -1,30 +0,0 @@
-FROM ubuntu:16.04
-
-RUN apt-get update && apt-get install -y --no-install-recommends \
-  g++ \
-  make \
-  file \
-  curl \
-  ca-certificates \
-  python3 \
-  git \
-  cmake \
-  sudo \
-  gdb \
-  libssl-dev \
-  pkg-config \
-  xz-utils
-
-COPY scripts/sccache.sh /scripts/
-RUN sh /scripts/sccache.sh
-
-ENV RUST_CONFIGURE_ARGS \
-      --build=x86_64-unknown-linux-gnu \
-      --enable-full-bootstrap
-ENV SCRIPT python3 ../x.py --stage 2 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