From 4ce1e29804c6caf56e711ad95b0f4a5d3d952391 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Tue, 14 Oct 2025 12:32:51 -0400 Subject: [PATCH] clippy.sh: build for BPF after everything else In cases where I run `./clippy.sh ... -p ` I really want the results for that crate to come quickly. --- clippy.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/clippy.sh b/clippy.sh index a710c7c1..6d454a9e 100755 --- a/clippy.sh +++ b/clippy.sh @@ -2,15 +2,6 @@ set -eux -cargo +nightly hack clippy \ - --target bpfel-unknown-none -Zbuild-std=core \ - --package aya-ebpf-bindings \ - --package aya-ebpf \ - --package aya-log-ebpf \ - --package integration-ebpf \ - --feature-powerset \ - -- --deny warnings - # `-C panic=abort` because "unwinding panics are not supported without std"; integration-ebpf # contains `#[no_std]` binaries. # @@ -26,3 +17,12 @@ cargo +nightly hack clippy "$@" \ -- --deny warnings \ -C panic=abort \ -Zpanic_abort_tests + +cargo +nightly hack clippy \ + --target bpfel-unknown-none -Zbuild-std=core \ + --package aya-ebpf-bindings \ + --package aya-ebpf \ + --package aya-log-ebpf \ + --package integration-ebpf \ + --feature-powerset \ + -- --deny warnings