File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,7 @@ set -euxo pipefail
33main () {
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}
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ set -euxo pipefail
33main () {
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
You can’t perform that action at this time.
0 commit comments