clippy.sh 674 B

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