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/
40
40
# We disable optimized compiler built-ins because that requires a C toolchain for the target.
41
41
# We also skip the x86_64-unknown-linux-gnu target as it is well-tested by other jobs.
42
42
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
+ && \
44
54
/scripts/check-default-config-profiles.sh && \
45
55
python3 ../x.py build src/tools/build-manifest && \
46
56
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
28
28
29
29
ENV SCRIPT \
30
30
python3 ../x.py check && \
31
- python3 ../x.py check src/tools/bump-stage0 && \
32
31
python3 ../x.py clippy ci --stage 2 && \
33
32
python3 ../x.py test --stage 1 core alloc std test proc_macro && \
34
33
python3 ../x.py test --stage 1 src/tools/compiletest && \
You can’t perform that action at this time.
0 commit comments