We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f5ee4 commit 6002ee5Copy full SHA for 6002ee5
ci/install.sh
@@ -0,0 +1,12 @@
1
+set -euxo pipefail
2
+
3
+main() {
4
+ if [ $TARGET = thumbv7m-none-eabi ]; then
5
+ cargo install --list | grep xargo || \
6
+ cargo install xargo
7
+ rustup component list | grep 'rust-src.*installed' || \
8
+ rustup component add rust-src
9
+ fi
10
+}
11
12
+main
ci/script.sh
@@ -0,0 +1,14 @@
+ local cargo=
+ cargo=xargo
+ else
+ cargo=cargo
+ $cargo check --target $TARGET
13
14
0 commit comments