We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fd6d96 commit 2c8ca9dCopy full SHA for 2c8ca9d
ci/install.sh
@@ -3,10 +3,7 @@ set -euxo pipefail
3
main() {
4
case $TARGET in
5
thumbv*-none-eabi*)
6
- cargo install --list | grep xargo || \
7
- cargo install xargo
8
- rustup component list | grep 'rust-src.*installed' || \
9
- rustup component add rust-src
+ rustup target add $TARGET
10
;;
11
esac
12
}
ci/script.sh
@@ -3,11 +3,11 @@ set -euxo pipefail
thumbv7em-none-eabi*)
- xargo check --target $TARGET --features cm7-r0p1
- xargo check --target $TARGET
+ cargo check --target $TARGET --features cm7-r0p1
+ cargo check --target $TARGET
*)
13
cargo test --target $TARGET
0 commit comments