12 lines
185 B
Bash
12 lines
185 B
Bash
set -euxo pipefail
|
|
|
|
main() {
|
|
cargo check --target $TARGET
|
|
|
|
if [ $TRAVIS_RUST_VERSION = nightly ]; then
|
|
cargo check --target $TARGET --features inline-asm
|
|
fi
|
|
}
|
|
|
|
main
|