File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
src/ci/docker/host-x86_64 Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff 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.
4242ENV 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 && \
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ RUN sh /scripts/sccache.sh
2828
2929ENV 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 && \
You can’t perform that action at this time.
0 commit comments