diff options
author | 2020-08-26 01:39:26 +0200 | |
---|---|---|
committer | 2020-08-26 19:58:08 +0200 | |
commit | 5e9347e53485f6c676dbd06b0ded7abdf05b264b (patch) | |
tree | b489d5aee18675be09c3f11609e1f21308a88ec8 | |
parent | 73a9d29b298100b4454e6ca17ca057a4dda0a91a (diff) | |
download | cortex-m-5e9347e53485f6c676dbd06b0ded7abdf05b264b.tar.gz cortex-m-5e9347e53485f6c676dbd06b0ded7abdf05b264b.tar.zst cortex-m-5e9347e53485f6c676dbd06b0ded7abdf05b264b.zip |
Only check blobs with the nightly compiler
-rw-r--r-- | ci/install.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ci/install.sh b/ci/install.sh index fb3e52d..855043d 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -5,6 +5,19 @@ main() { thumbv*-none-eabi*) rustup target add $TARGET ;; + x86_64-unknown-linux-gnu) + # We need *all* targets and nightly as we're checking the blobs. + rustup install nightly + rustup target add \ + thumbv6m-none-eabi \ + thumbv7m-none-eabi \ + thumbv7em-none-eabi \ + thumbv7em-none-eabihf \ + thumbv8m.base-none-eabi \ + thumbv8m.main-none-eabi \ + thumbv8m.main-none-eabihf \ + --toolchain nightly + ;; esac } |