Skip to content

Commit 6f2a1b2

Browse files
committed
install arm tools in CI
1 parent 853a890 commit 6f2a1b2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/rust.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ jobs:
4343
with:
4444
targets: 'thumbv6m-none-eabi'
4545
- uses: actions/checkout@master
46-
- run: cargo check --no-default-features --target thumbv6m-none-eabi
46+
- run: |
47+
# install eabi compiler suite
48+
sudo apt-get install gcc-arm-none-eabi
49+
cargo check --no-default-features --target thumbv6m-none-eabi
4750
4851
test:
4952
strategy:

0 commit comments

Comments
 (0)