Skip to content

Commit 1e5ff65

Browse files
committed
[DO NOT MERGE] do not download-rustc and verbose crashes
1 parent 3a2c247 commit 1e5ff65

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

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

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2424
COPY scripts/sccache.sh /scripts/
2525
RUN sh /scripts/sccache.sh
2626

27+
ENV COMPILETEST_VERBOSE_CRASHES 1
2728
ENV RUST_CONFIGURE_ARGS \
28-
--build=x86_64-unknown-linux-gnu \
29-
--enable-sanitizers \
30-
--enable-profiler \
31-
--enable-compiler-docs \
32-
--set llvm.libzstd=true
33-
ENV SCRIPT python3 ../x.py --stage 2 test
29+
--build=x86_64-unknown-linux-gnu \
30+
--enable-sanitizers \
31+
--enable-profiler \
32+
--enable-compiler-docs \
33+
--set llvm.libzstd=true \
34+
# HACK(jieyouxu): do not download-rustc!
35+
--set rust.download-rustc=false
36+
# HACK(jieyouxu): faster feedback
37+
ENV SCRIPT python3 ../x.py --stage 1 test tests/crashes

0 commit comments

Comments
 (0)