Commit 53ba5cb 1 parent f7eb7fb commit 53ba5cb Copy full SHA for 53ba5cb
File tree 2 files changed +6
-3
lines changed
src/ci/docker/x86_64-gnu-llvm-7
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ matrix:
16
16
fast_finish : true
17
17
include :
18
18
# Images used in testing PR and try-build should be run first.
19
- - env : IMAGE=x86_64-gnu-llvm-5.0 RUST_BACKTRACE=1
19
+ - env : IMAGE=x86_64-gnu-llvm-7 RUST_BACKTRACE=1
20
20
if : type = pull_request OR branch = auto
21
21
22
22
- env : IMAGE=dist-x86_64-linux DEPLOY=1
Original file line number Diff line number Diff line change @@ -11,17 +11,20 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
11
11
cmake \
12
12
sudo \
13
13
gdb \
14
- llvm-5.0-tools \
15
14
libedit-dev \
16
15
zlib1g-dev \
17
16
xz-utils
18
17
18
+ RUN curl https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
19
+ echo deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main > /etc/apt/sources.list.d/llvm.list && \
20
+ apt-get update && apt-get install -y --no-install-recommends llvm-7-tools
21
+
19
22
COPY scripts/sccache.sh /scripts/
20
23
RUN sh /scripts/sccache.sh
21
24
22
25
# using llvm-link-shared due to libffi issues -- see #34486
23
26
ENV RUST_CONFIGURE_ARGS \
24
27
--build=x86_64-unknown-linux-gnu \
25
- --llvm-root=/usr/lib/llvm-5.0 \
28
+ --llvm-root=/usr/lib/llvm-7 \
26
29
--enable-llvm-link-shared
27
30
ENV RUST_CHECK_TARGET check
You can’t perform that action at this time.
0 commit comments