File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
src/ci/docker/x86_64-gnu-debug Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
7
7
curl \
8
8
ca-certificates \
9
9
python2.7 \
10
+ python2.7-dev \
10
11
git \
11
12
cmake \
12
13
sudo \
@@ -16,9 +17,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
16
17
COPY scripts/sccache.sh /scripts/
17
18
RUN sh /scripts/sccache.sh
18
19
20
+ ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1
19
21
ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
22
+
20
23
ENV RUST_CONFIGURE_ARGS \
21
24
--build=x86_64-unknown-linux-gnu \
22
25
--enable-debug \
26
+ --enable-lld \
27
+ --enable-lldb \
23
28
--enable-optimize
24
- ENV SCRIPT python2.7 ../x.py build
29
+ ENV SCRIPT \
30
+ python2.7 ../x.py build && \
31
+ python2.7 ../x.py test src/test/run-make-fulldeps --test-args clang
You can’t perform that action at this time.
0 commit comments