diff options
author | 2020-08-28 19:52:20 +0200 | |
---|---|---|
committer | 2020-08-28 19:54:03 +0200 | |
commit | 0a118397332c10080c48d76e7416ce854a0260ba (patch) | |
tree | b284d3ef162113aeae169228a5b294a1c33f8234 /ci/script.sh | |
parent | 36886f19b6ca0ac3b30ddf8543d330a445506057 (diff) | |
download | cortex-m-0a118397332c10080c48d76e7416ce854a0260ba.tar.gz cortex-m-0a118397332c10080c48d76e7416ce854a0260ba.tar.zst cortex-m-0a118397332c10080c48d76e7416ce854a0260ba.zip |
Replace shell scripts with integration test
Diffstat (limited to 'ci/script.sh')
-rw-r--r-- | ci/script.sh | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/ci/script.sh b/ci/script.sh deleted file mode 100644 index fc1e754..0000000 --- a/ci/script.sh +++ /dev/null @@ -1,45 +0,0 @@ -set -euxo pipefail - -main() { - if [ $TRAVIS_RUST_VERSION = nightly ]; then - export RUSTFLAGS="-D warnings" - fi - - cargo check --target $TARGET - - if [ $TRAVIS_RUST_VERSION = nightly ]; then - cargo check --target $TARGET --features 'inline-asm' - fi - - case $TARGET in - thumbv7em-none-eabi*) - cargo check --target $TARGET --features cm7-r0p1 - - if [ $TRAVIS_RUST_VERSION = nightly ]; then - cargo check --target $TARGET --features 'cm7-r0p1 inline-asm' - fi - ;; - - thumbv*-none-eabi*) - ;; - - x86_64-unknown-linux-gnu) - cargo test --target $TARGET - ;; - esac - - if [ $TARGET = x86_64-unknown-linux-gnu ]; then - cargo xtask check-blobs - fi - - if [ $TRAVIS_RUST_VERSION = nightly ]; then - # Get the latest nightly with a working clippy - rustup toolchain uninstall nightly - rustup set profile default - rustup default nightly - rustup target add $TARGET - cargo clippy --target $TARGET -- -D warnings - fi -} - -main |