]> git.lizzy.rs Git - rust.git/blob - src/ci/docker/host-x86_64/i686-gnu-nopt/Dockerfile
Rollup merge of #73794 - GuillaumeGomez:cleanup-e0705, r=Dylan-DPC
[rust.git] / src / ci / docker / host-x86_64 / i686-gnu-nopt / Dockerfile
1 FROM ubuntu:16.04
2
3 RUN apt-get update && apt-get install -y --no-install-recommends \
4   g++-multilib \
5   make \
6   file \
7   curl \
8   ca-certificates \
9   python3 \
10   git \
11   cmake \
12   sudo \
13   gdb \
14   xz-utils
15
16
17 COPY scripts/sccache.sh /scripts/
18 RUN sh /scripts/sccache.sh
19
20 ENV RUST_CONFIGURE_ARGS --build=i686-unknown-linux-gnu --disable-optimize-tests
21 ENV SCRIPT python3 ../x.py test
22
23 # FIXME(#59637) takes too long on CI right now
24 ENV NO_LLVM_ASSERTIONS=1 NO_DEBUG_ASSERTIONS=1