Skip to content

Commit 4788408

Browse files
committed
Install Arm GCC.
1 parent 9c858ba commit 4788408

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ jobs:
2323
rustup component add llvm-tools
2424
cargo install cargo-binutils
2525
26+
- name: Add targets
27+
run: |
28+
sudo apt-get -y install gcc-arm-none-eabi binutils-arm-none-eabi
29+
2630
- name: Build lib (native)
2731
run: |
2832
cargo build --verbose
@@ -31,7 +35,7 @@ jobs:
3135
run: |
3236
cargo test --verbose
3337
34-
- name: Build samples (Cortex-M0)
38+
- name: Build samples (Cortex-M0+)
3539
run: |
3640
cd samples && ./build.sh thumbv6m-none-eabi
3741

0 commit comments

Comments
 (0)