Skip to content

Commit 5e9347e

Browse files
Only check blobs with the nightly compiler
1 parent 73a9d29 commit 5e9347e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ci/install.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ main() {
55
thumbv*-none-eabi*)
66
rustup target add $TARGET
77
;;
8+
x86_64-unknown-linux-gnu)
9+
# We need *all* targets and nightly as we're checking the blobs.
10+
rustup install nightly
11+
rustup target add \
12+
thumbv6m-none-eabi \
13+
thumbv7m-none-eabi \
14+
thumbv7em-none-eabi \
15+
thumbv7em-none-eabihf \
16+
thumbv8m.base-none-eabi \
17+
thumbv8m.main-none-eabi \
18+
thumbv8m.main-none-eabihf \
19+
--toolchain nightly
20+
;;
821
esac
922
}
1023

0 commit comments

Comments
 (0)