We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
x clippy --stage 1
1 parent 11756f7 commit dd1c760Copy full SHA for dd1c760
src/ci/docker/host-x86_64/x86_64-gnu-llvm-13/Dockerfile
@@ -65,5 +65,7 @@ ENV SCRIPT ../x.py --stage 2 test --exclude src/tools/tidy && \
65
#
66
../x.ps1 --stage 2 test tests/ui --pass=check \
67
--host='' --target=i686-unknown-linux-gnu && \
68
+ # Run clippy just to make sure it doesn't error out; we don't actually want to gate on the warnings though.
69
+ python3 ../x.py --stage 1 clippy -Awarnings && \
70
# Run tidy at the very end, after all the other tests.
71
python2.7 ../x.py --stage 2 test src/tools/tidy
0 commit comments