aboutsummaryrefslogtreecommitdiff
path: root/panic-semihosting/ci/script.sh
blob: eb1a3139767bd920a114c77813d0aeab1dd2c0db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
set -euxo pipefail

main() {
    cargo check --target $TARGET

    if [ $TRAVIS_RUST_VERSION = nightly ]; then
        cargo check --target $TARGET --features inline-asm
    fi
}

main