Skip to content

Commit 48cb04f

Browse files
Enable Clang-based tests on x86_64-gnu-debug builder.
1 parent b38125c commit 48cb04f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/ci/docker/x86_64-gnu-debug/Dockerfile

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
77
curl \
88
ca-certificates \
99
python2.7 \
10+
python2.7-dev \
1011
git \
1112
cmake \
1213
sudo \
@@ -16,9 +17,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1617
COPY scripts/sccache.sh /scripts/
1718
RUN sh /scripts/sccache.sh
1819

20+
ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1
1921
ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
22+
2023
ENV RUST_CONFIGURE_ARGS \
2124
--build=x86_64-unknown-linux-gnu \
2225
--enable-debug \
26+
--enable-lld \
27+
--enable-lldb \
2328
--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

0 commit comments

Comments
 (0)