vexriscv-rust/ci/script.sh
2019-02-06 16:48:23 +01:00

16 lines
270 B
Bash

set -euxo pipefail
main() {
cargo check --target $TARGET
if [ $TRAVIS_RUST_VERSION = nightly ]; then
cargo check --target $TARGET --features inline-asm
fi
if [ $TARGET = x86_64-unknown-linux-gnu ]; then
./check-blobs.sh
fi
}
main