vexriscv-rust/ci/script.sh

12 lines
196 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 'const-fn inline-asm'
2018-08-11 23:58:32 +08:00
fi
}
main