File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ mkdir -p ~/rust/cargo/bin
77cp target/debug/cargo-clippy ~ /rust/cargo/bin/cargo-clippy
88cp target/debug/clippy-driver ~ /rust/cargo/bin/clippy-driver
99rm ~ /.cargo/bin/cargo-clippy
10- PATH=$PATH :~ /rust/cargo/bin cargo clippy --all -- -D clippy
10+ PATH=$PATH :~ /rust/cargo/bin cargo clippy --all-targets --all-features -- --cap-lints warn -D clippy
1111cd clippy_workspace_tests && PATH=$PATH :~ /rust/cargo/bin cargo clippy -- -D clippy && cd ..
1212cd clippy_workspace_tests/src && PATH=$PATH :~ /rust/cargo/bin cargo clippy -- -D clippy && cd ../..
1313cd clippy_workspace_tests/subcrate && PATH=$PATH :~ /rust/cargo/bin cargo clippy -- -D clippy && cd ../..
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ git clone --depth=1 https://github.com/${INTEGRATION}.git checkout
88cd checkout
99
1010function check() {
11- RUST_BACKTRACE=full cargo clippy --all & > clippy_output
11+ RUST_BACKTRACE=full cargo clippy --all-targets --all-features -- --cap-lints warn & > clippy_output
1212 cat clippy_output
13- ! cat clippy_output | grep -q " internal compiler error"
13+ ! cat clippy_output | grep -q " internal compiler error\|query stack during panic "
1414 if [[ $? != 0 ]]; then
1515 return 1
1616 fi
You can’t perform that action at this time.
0 commit comments