We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07821f0 commit 1d9dd95Copy full SHA for 1d9dd95
.github/workflows/ci.yml
@@ -50,11 +50,22 @@ jobs:
50
steps:
51
- uses: actions/checkout@v4
52
53
+ - name: Install build dependencies
54
+ shell: bash
55
+ run: |
56
+ apt-get update -y -qq && apt-get install -y -qq llvm libc6-dev-i386 libclang-dev
57
+
58
+ - uses: fiam/arm-none-eabi-gcc@v1
59
+ with:
60
+ release: "9-2020-q2"
61
62
- uses: actions-rs/toolchain@v1
63
with:
64
profile: minimal
65
toolchain: 1.87
66
+ target: thumbv7em-none-eabi
67
override: true
68
+ components: llvm-tools-preview
69
70
- name: Build
- run: cargo build --release --all-features --all-targets --target x86_64-unknown-linux-gnu
71
+ run: cargo build --release --all-features --all-targets --target thumbv7em-none-eabi
0 commit comments