Skip to content

Commit 0be0a0a

Browse files
committed
Do x check on various bootstrap tools in CI
1 parent 7374789 commit 0be0a0a

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/ci/docker/host-x86_64/pr-check-1/Dockerfile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,17 @@ COPY host-x86_64/pr-check-1/validate-toolstate.sh /scripts/
4040
# We disable optimized compiler built-ins because that requires a C toolchain for the target.
4141
# We also skip the x86_64-unknown-linux-gnu target as it is well-tested by other jobs.
4242
ENV SCRIPT \
43-
python3 ../x.py check bootstrap && \
43+
# Check some tools that aren't included in `x check` by default, to
44+
# ensure that maintainers can still do check builds locally.
45+
python3 ../x.py check \
46+
bootstrap \
47+
bump-stage0 \
48+
compiletest \
49+
coverage-dump \
50+
linkchecker \
51+
run-make-support \
52+
rustdoc-gui-test \
53+
&& \
4454
/scripts/check-default-config-profiles.sh && \
4555
python3 ../x.py build src/tools/build-manifest && \
4656
python3 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu && \

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ RUN sh /scripts/sccache.sh
2828

2929
ENV SCRIPT \
3030
python3 ../x.py check && \
31-
python3 ../x.py check src/tools/bump-stage0 && \
3231
python3 ../x.py clippy ci --stage 2 && \
3332
python3 ../x.py test --stage 1 core alloc std test proc_macro && \
3433
python3 ../x.py test --stage 1 src/tools/compiletest && \

0 commit comments

Comments
 (0)