diff options
-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 } |