]> git.lizzy.rs Git - rust.git/blob - src/ci/docker/x86_64-gnu-llvm-6.0/Dockerfile
Move installing of deps to the docker container, instead of installing on the host...
[rust.git] / src / ci / docker / x86_64-gnu-llvm-6.0 / 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   python2.7 \
10   git \
11   cmake \
12   sudo \
13   gdb \
14   llvm-6.0-tools \
15   libedit-dev \
16   libssl-dev \
17   pkg-config \
18   zlib1g-dev \
19   xz-utils
20
21 COPY scripts/sccache.sh /scripts/
22 RUN sh /scripts/sccache.sh
23
24 # using llvm-link-shared due to libffi issues -- see #34486
25 ENV RUST_CONFIGURE_ARGS \
26       --build=x86_64-unknown-linux-gnu \
27       --llvm-root=/usr/lib/llvm-6.0 \
28       --enable-llvm-link-shared
29 ENV SCRIPT python2.7 ../x.py test src/tools/tidy && python2.7 ../x.py test
30
31 # The purpose of this container isn't to test with debug assertions and
32 # this is run on all PRs, so let's get speedier builds by disabling these extra
33 # checks.
34 ENV NO_DEBUG_ASSERTIONS=1
35 ENV NO_LLVM_ASSERTIONS=1