mirror of https://github.com/aya-rs/aya
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.
11 lines
195 B
Bash
11 lines
195 B
Bash
4 years ago
|
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
|