4
0

clippy.sh 669 B

1234567891011121314
  1. #!/usr/bin/env sh
  2. set -eux
  3. # `-C panic=abort` because "unwinding panics are not supported without std"; integration-ebpf
  4. # contains `#[no_std]` binaries.
  5. #
  6. # `-Zpanic_abort_tests` because "building tests with panic=abort is not supported without
  7. # `-Zpanic_abort_tests`"; Cargo does this automatically when panic=abort is set via profile but we
  8. # want to preserve unwinding at runtime - here we are just running clippy so we don't care about
  9. # unwinding behavior.
  10. #
  11. # `+nightly` because "the option `Z` is only accepted on the nightly compiler".
  12. cargo +nightly hack clippy "$@" --all-targets --feature-powerset -- --deny warnings -C panic=abort -Zpanic_abort_tests