diff options
author | 2020-09-01 22:58:22 +0200 | |
---|---|---|
committer | 2020-10-13 21:31:37 +0200 | |
commit | cab2e28f674901cd87d4f88f7eb5ba32d3517b35 (patch) | |
tree | cacc3652c5fda7f5830319abfe88b063e33f5fa3 /cortex-m-semihosting/ci/script.sh | |
parent | 9bc9be611b262edf5c7811235e16bdbcbb3509cf (diff) | |
download | cortex-m-cab2e28f674901cd87d4f88f7eb5ba32d3517b35.tar.gz cortex-m-cab2e28f674901cd87d4f88f7eb5ba32d3517b35.tar.zst cortex-m-cab2e28f674901cd87d4f88f7eb5ba32d3517b35.zip |
Integrate semihosting crates
Diffstat (limited to 'cortex-m-semihosting/ci/script.sh')
-rw-r--r-- | cortex-m-semihosting/ci/script.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/cortex-m-semihosting/ci/script.sh b/cortex-m-semihosting/ci/script.sh deleted file mode 100644 index dc0be46..0000000 --- a/cortex-m-semihosting/ci/script.sh +++ /dev/null @@ -1,15 +0,0 @@ -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 |