Skip to content

Commit 33d9177

Browse files
committed
Add CI on a target without atomic ptr
1 parent 4c889b2 commit 33d9177

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.46.0
4154
needs: pre_ci

0 commit comments

Comments
 (0)