Skip to content

Commit 2c8ca9d

Browse files
committed
s/Xargo/Cargo/
1 parent 2fd6d96 commit 2c8ca9d

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

ci/install.sh

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ set -euxo pipefail
33
main() {
44
case $TARGET in
55
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
6+
rustup target add $TARGET
107
;;
118
esac
129
}

ci/script.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ set -euxo pipefail
33
main() {
44
case $TARGET in
55
thumbv7em-none-eabi*)
6-
xargo check --target $TARGET --features cm7-r0p1
7-
xargo check --target $TARGET
6+
cargo check --target $TARGET --features cm7-r0p1
7+
cargo check --target $TARGET
88
;;
99
thumbv*-none-eabi*)
10-
xargo check --target $TARGET
10+
cargo check --target $TARGET
1111
;;
1212
*)
1313
cargo test --target $TARGET

0 commit comments

Comments
 (0)