We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e063fe7 commit 091240eCopy full SHA for 091240e
1 file changed
.github/workflows/rust.yml
@@ -70,7 +70,7 @@ jobs:
70
- name: Checkout
71
uses: actions/checkout@v2
72
- name: Set up QEMU
73
- run: sudo apt install qemu-system-arm
+ run: sudo apt update && sudo apt install -y qemu-system-arm gcc-arm-none-eabi
74
- name: Checkout Toolchain
75
uses: actions-rs/toolchain@v1
76
with:
@@ -82,5 +82,5 @@ jobs:
82
- name: Run
83
env:
84
RUSTFLAGS: "-C link-arg=-Tlink.x"
85
- CARGO_TARGET_THUMBV7M_NONE_EABI_RUNNER: "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semihosting-config enable=on,target=native -kernel"
+ CARGO_TARGET_THUMBV7M_NONE_EABI_RUNNER: "qemu-system-arm -cpu cortex-m3 -machine mps2-an385 -nographic -semihosting-config enable=on,target=native -kernel"
86
run: cd embedded && cargo run --target thumbv7m-none-eabi
0 commit comments