]> git.lizzy.rs Git - rust.git/blob - src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh
Enable to ping RISC-V group via triagebot
[rust.git] / src / ci / docker / host-x86_64 / x86_64-gnu-tools / checktools.sh
1 #!/bin/sh
2
3 set -eu
4
5 X_PY="$1"
6
7 # Try to test all the tools and store the build/test success in the TOOLSTATE_FILE
8
9 set +e
10 python3 "$X_PY" test --no-fail-fast \
11     src/doc/book \
12     src/doc/nomicon \
13     src/doc/reference \
14     src/doc/rust-by-example \
15     src/doc/embedded-book \
16     src/doc/edition-guide \
17     src/tools/rls \
18     src/tools/rustfmt \
19     src/tools/miri \
20
21 set -e
22
23 # debugging: print out the saved toolstates
24 cat /tmp/toolstate/toolstates.json
25 python3 "$X_PY" test check-tools
26 python3 "$X_PY" test src/tools/clippy