Skip to content

Commit 52027ce

Browse files
bors[bot]japaric
andcommitted
Merge #85
85: s/Xargo/Cargo/ r=japaric a=japaric Co-authored-by: Jorge Aparicio <[email protected]>
2 parents 2fd6d96 + 2c8ca9d commit 52027ce

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

ci/install.sh

Lines changed: 1 addition & 4 deletions
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

Lines changed: 3 additions & 3 deletions
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)