We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc2a7a0 commit 9febc4eCopy full SHA for 9febc4e
src/ci/docker/host-x86_64/x86_64-gnu-debug/Dockerfile
@@ -50,6 +50,11 @@ ENV RUST_CONFIGURE_ARGS \
50
# - That the tests with `//@ needs-force-clang-based-tests` pass, since they
51
# don't run by default unless RUSTBUILD_FORCE_CLANG_BASED_TESTS is set.
52
53
+# HACK(jieyouxu): this first does a gigantic stage 2 full build with full debug
54
+# info, then cleans stage 2 artifacts to reclaim some disk space to make it
55
+# possible to run the stage 2 run-make test suite without running out of disk
56
+# space.
57
ENV SCRIPT \
58
python3 ../x.py --stage 2 build && \
59
+ python3 ../x.py --stage 2 clean && \
60
python3 ../x.py --stage 2 test tests/run-make
0 commit comments