You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aya/ebpf/aya-ebpf-cty/ci/script.sh

11 lines
195 B
Bash

set -ex
main() {
for target in $(rustup target list | grep linux-gnu | cut -d' ' -f1); do
rustup target add $target || continue
cargo check --target $target
done
}
main