Skip to content

Commit 3207cd8

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 + 5815cbb commit 3207cd8

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

bors.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
status = [
22
"continuous-integration/travis-ci/push",
3-
"continuous-integration/appveyor/branch"
43
]

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)