Skip to content

Commit d4d90ca

Browse files
committed
put flag check at the end of command chain in mingw-check-2
1 parent 8c236ab commit d4d90ca

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/ci/docker/host-x86_64/mingw-check-2/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ COPY scripts/sccache.sh /scripts/
2727
RUN sh /scripts/sccache.sh
2828

2929
ENV SCRIPT \
30-
# The BOOTSTRAP_TRACING flag is added to verify whether the
31-
# bootstrap process compiles successfully with this flag enabled.
32-
BOOTSTRAP_TRACING=1 python3 ../x.py check && \
30+
python3 ../x.py check && \
3331
python3 ../x.py clippy ci && \
3432
python3 ../x.py test --stage 1 core alloc std test proc_macro && \
3533
python3 ../x.py doc --stage 0 bootstrap && \
@@ -38,4 +36,7 @@ ENV SCRIPT \
3836
RUSTDOCFLAGS=\"--document-private-items --document-hidden-items\" python3 ../x.py doc --stage 1 library && \
3937
mkdir -p /checkout/obj/staging/doc && \
4038
cp -r build/x86_64-unknown-linux-gnu/doc /checkout/obj/staging && \
41-
RUSTDOCFLAGS=\"--document-private-items --document-hidden-items\" python3 ../x.py doc --stage 1 library/test
39+
RUSTDOCFLAGS=\"--document-private-items --document-hidden-items\" python3 ../x.py doc --stage 1 library/test && \
40+
# The BOOTSTRAP_TRACING flag is added to verify whether the
41+
# bootstrap process compiles successfully with this flag enabled.
42+
BOOTSTRAP_TRACING=1 python3 ../x.py --help

0 commit comments

Comments
 (0)