We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a2c247 commit 1e5ff65Copy full SHA for 1e5ff65
src/ci/docker/host-x86_64/x86_64-gnu/Dockerfile
@@ -24,10 +24,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
24
COPY scripts/sccache.sh /scripts/
25
RUN sh /scripts/sccache.sh
26
27
+ENV COMPILETEST_VERBOSE_CRASHES 1
28
ENV RUST_CONFIGURE_ARGS \
- --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
+ --build=x86_64-unknown-linux-gnu \
+ --enable-sanitizers \
+ --enable-profiler \
+ --enable-compiler-docs \
+ --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