File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
src/ci/docker/x86_64-gnu-llvm-3.9 Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ matrix:
12
12
fast_finish : true
13
13
include :
14
14
# Images used in testing PR and try-build should be run first.
15
- - env : IMAGE=x86_64-gnu-llvm-3.7 RUST_BACKTRACE=1
15
+ - env : IMAGE=x86_64-gnu-llvm-3.9 RUST_BACKTRACE=1
16
16
if : type = pull_request OR branch = auto
17
17
18
18
- env : IMAGE=dist-x86_64-linux DEPLOY=1
Original file line number Diff line number Diff line change @@ -11,15 +11,17 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
11
11
cmake \
12
12
sudo \
13
13
gdb \
14
- llvm-3.7 -tools \
14
+ llvm-3.9 -tools \
15
15
libedit-dev \
16
16
zlib1g-dev \
17
17
xz-utils
18
18
19
19
COPY scripts/sccache.sh /scripts/
20
20
RUN sh /scripts/sccache.sh
21
21
22
+ # using llvm-link-shared due to libffi issues -- see #34486
22
23
ENV RUST_CONFIGURE_ARGS \
23
24
--build=x86_64-unknown-linux-gnu \
24
- --llvm-root=/usr/lib/llvm-3.7
25
+ --llvm-root=/usr/lib/llvm-3.9 \
26
+ --enable-llvm-link-shared
25
27
ENV RUST_CHECK_TARGET check
You can’t perform that action at this time.
0 commit comments