Skip to content

Commit 0f48a72

Browse files
authored
Merge pull request #33 from dtolnay/thumbv6m
Add CI on a target without atomic ptr
2 parents 584d7d7 + 3446ea0 commit 0f48a72

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,19 @@ jobs:
3636
if: matrix.rust == 'nightly'
3737
- run: cargo test
3838

39+
embedded:
40+
name: No atomic
41+
needs: pre_ci
42+
if: needs.pre_ci.outputs.continue
43+
runs-on: ubuntu-latest
44+
timeout-minutes: 45
45+
steps:
46+
- uses: actions/checkout@v4
47+
- uses: dtolnay/rust-toolchain@stable
48+
with:
49+
targets: thumbv6m-none-eabi
50+
- run: cargo check --target thumbv6m-none-eabi
51+
3952
msrv:
4053
name: Rust 1.60.0
4154
needs: pre_ci

0 commit comments

Comments
 (0)