aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jonas Schievink <jonasschievink@gmail.com> 2020-08-26 01:39:26 +0200
committerGravatar Jonas Schievink <jonasschievink@gmail.com> 2020-08-26 19:58:08 +0200
commit5e9347e53485f6c676dbd06b0ded7abdf05b264b (patch)
treeb489d5aee18675be09c3f11609e1f21308a88ec8
parent73a9d29b298100b4454e6ca17ca057a4dda0a91a (diff)
downloadcortex-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.sh13
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
}