vexriscv-rust/ci/script.sh

12 lines
185 B
Bash
Raw Normal View History

2018-08-11 23:58:32 +08:00
set -euxo pipefail
main() {
cargo check --target $TARGET
if [ $TRAVIS_RUST_VERSION = nightly ]; then
cargo check --target $TARGET --features inline-asm
fi
}
main