]> git.lizzy.rs Git - rust.git/blob - src/ci/docker/host-x86_64/x86_64-gnu-full-bootstrap/Dockerfile
Enable to ping RISC-V group via triagebot
[rust.git] / src / ci / docker / host-x86_64 / x86_64-gnu-full-bootstrap / Dockerfile
1 FROM ubuntu:16.04
2
3 RUN apt-get update && apt-get install -y --no-install-recommends \
4   g++ \
5   make \
6   file \
7   curl \
8   ca-certificates \
9   python3 \
10   git \
11   cmake \
12   sudo \
13   gdb \
14   libssl-dev \
15   pkg-config \
16   xz-utils
17
18 COPY scripts/sccache.sh /scripts/
19 RUN sh /scripts/sccache.sh
20
21 ENV RUST_CONFIGURE_ARGS \
22       --build=x86_64-unknown-linux-gnu \
23       --enable-full-bootstrap
24 ENV SCRIPT python3 ../x.py build
25
26 # In general this just slows down the build and we're just a smoke test that
27 # a full bootstrap works in general, so there's not much need to take this
28 # penalty in build times.
29 ENV NO_LLVM_ASSERTIONS 1
30 ENV NO_DEBUG_ASSERTIONS 1