Skip to content

Commit 1d9dd95

Browse files
fixup! ci: Check MSRV
1 parent 07821f0 commit 1d9dd95

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,22 @@ jobs:
5050
steps:
5151
- uses: actions/checkout@v4
5252

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+
5362
- uses: actions-rs/toolchain@v1
5463
with:
5564
profile: minimal
5665
toolchain: 1.87
66+
target: thumbv7em-none-eabi
5767
override: true
68+
components: llvm-tools-preview
5869

5970
- name: Build
60-
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

Comments
 (0)