File tree 3 files changed +4
-8
lines changed
3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 1
1
status = [
2
2
" continuous-integration/travis-ci/push" ,
3
- " continuous-integration/appveyor/branch"
4
3
]
Original file line number Diff line number Diff line change @@ -3,10 +3,7 @@ set -euxo pipefail
3
3
main () {
4
4
case $TARGET in
5
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
6
+ rustup target add $TARGET
10
7
;;
11
8
esac
12
9
}
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ set -euxo pipefail
3
3
main () {
4
4
case $TARGET in
5
5
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
8
8
;;
9
9
thumbv* -none-eabi* )
10
- xargo check --target $TARGET
10
+ cargo check --target $TARGET
11
11
;;
12
12
* )
13
13
cargo test --target $TARGET
You can’t perform that action at this time.
0 commit comments