diff options
| author | bit-aloo <sshourya17@gmail.com> | 2025-06-11 16:01:40 +0530 |
|---|---|---|
| committer | bit-aloo <sshourya17@gmail.com> | 2025-06-11 16:01:40 +0530 |
| commit | d4d90ca3d26f9f620a55561e31f3ee3923efe190 (patch) | |
| tree | f0db4bf3ba5c6e7636c2188aba6b9536d8423097 | |
| parent | 8c236ab51e9d0df6501a59a1bf8e680dd05bf8ec (diff) | |
| download | rust-d4d90ca3d26f9f620a55561e31f3ee3923efe190.tar.gz rust-d4d90ca3d26f9f620a55561e31f3ee3923efe190.zip | |
put flag check at the end of command chain in mingw-check-2
| -rw-r--r-- | src/ci/docker/host-x86_64/mingw-check-2/Dockerfile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ci/docker/host-x86_64/mingw-check-2/Dockerfile b/src/ci/docker/host-x86_64/mingw-check-2/Dockerfile index cd61d1d752d..ce18a181d31 100644 --- a/src/ci/docker/host-x86_64/mingw-check-2/Dockerfile +++ b/src/ci/docker/host-x86_64/mingw-check-2/Dockerfile @@ -27,9 +27,7 @@ COPY scripts/sccache.sh /scripts/ RUN sh /scripts/sccache.sh ENV SCRIPT \ - # The BOOTSTRAP_TRACING flag is added to verify whether the - # bootstrap process compiles successfully with this flag enabled. - BOOTSTRAP_TRACING=1 python3 ../x.py check && \ + python3 ../x.py check && \ python3 ../x.py clippy ci && \ python3 ../x.py test --stage 1 core alloc std test proc_macro && \ python3 ../x.py doc --stage 0 bootstrap && \ @@ -38,4 +36,7 @@ ENV SCRIPT \ RUSTDOCFLAGS=\"--document-private-items --document-hidden-items\" python3 ../x.py doc --stage 1 library && \ mkdir -p /checkout/obj/staging/doc && \ cp -r build/x86_64-unknown-linux-gnu/doc /checkout/obj/staging && \ - RUSTDOCFLAGS=\"--document-private-items --document-hidden-items\" python3 ../x.py doc --stage 1 library/test + RUSTDOCFLAGS=\"--document-private-items --document-hidden-items\" python3 ../x.py doc --stage 1 library/test && \ + # The BOOTSTRAP_TRACING flag is added to verify whether the + # bootstrap process compiles successfully with this flag enabled. + BOOTSTRAP_TRACING=1 python3 ../x.py --help |
