blob: f6bca6ff9f9b3d1babd5ba2d22f3d270fe5e484a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# This script takes care of testing your crate
set -euxo pipefail
main() {
case $TARGET in
x86_64-unknown-linux-gnu)
cargo check --target $TARGET
;;
*)
xargo check --target $TARGET
;;
esac
}
main
|