Skip to content

Commit 4725bf6

Browse files
bors[bot]taiki-e
andauthored
Merge #910
910: Update no_atomic.rs r=taiki-e a=github-actions[bot] Auto-generated by [create-pull-request][1] [Please close and immediately reopen this pull request to run CI.][2] [1]: https://github.com/peter-evans/create-pull-request [2]: https://github.com/peter-evans/create-pull-request/blob/HEAD/docs/concepts-guidelines.md#workarounds-to-trigger-further-workflow-runs Co-authored-by: Taiki Endo <[email protected]>
2 parents 41ed3d9 + 02ab402 commit 4725bf6

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ jobs:
6464
- name: Install cross
6565
uses: taiki-e/install-action@cross
6666
if: matrix.target != ''
67+
# TODO: remove dependency on once_cell or bump MSRV
68+
- name: Downgrade dependencies on MSRV
69+
run: |
70+
cargo update -p once_cell --precise 1.14.0
71+
if: matrix.rust == '1.38'
6772
- name: Test
6873
run: ./ci/test.sh
6974

@@ -85,6 +90,11 @@ jobs:
8590
toolchain: ${{ matrix.rust }}
8691
- name: Install cargo-hack
8792
uses: taiki-e/install-action@cargo-hack
93+
# TODO: remove dependency on once_cell or bump MSRV
94+
- name: Downgrade dependencies on MSRV
95+
run: |
96+
cargo update -p once_cell --precise 1.14.0
97+
if: matrix.rust == '1.38'
8898
- name: Check features
8999
run: ./ci/check-features.sh
90100

no_atomic.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
const NO_ATOMIC_CAS: &[&str] = &[
55
"armv4t-none-eabi",
6+
"armv5te-none-eabi",
67
"avr-unknown-gnu-atmega328",
78
"bpfeb-unknown-none",
89
"bpfel-unknown-none",
@@ -11,6 +12,7 @@ const NO_ATOMIC_CAS: &[&str] = &[
1112
"riscv32im-unknown-none-elf",
1213
"riscv32imc-unknown-none-elf",
1314
"thumbv4t-none-eabi",
15+
"thumbv5te-none-eabi",
1416
"thumbv6m-none-eabi",
1517
];
1618

@@ -21,6 +23,7 @@ const NO_ATOMIC_64: &[&str] = &[
2123
"armebv7r-none-eabihf",
2224
"armv4t-none-eabi",
2325
"armv4t-unknown-linux-gnueabi",
26+
"armv5te-none-eabi",
2427
"armv5te-unknown-linux-gnueabi",
2528
"armv5te-unknown-linux-musleabi",
2629
"armv5te-unknown-linux-uclibceabi",
@@ -57,6 +60,7 @@ const NO_ATOMIC_64: &[&str] = &[
5760
"riscv32imac-unknown-xous-elf",
5861
"riscv32imc-unknown-none-elf",
5962
"thumbv4t-none-eabi",
63+
"thumbv5te-none-eabi",
6064
"thumbv6m-none-eabi",
6165
"thumbv7em-none-eabi",
6266
"thumbv7em-none-eabihf",

0 commit comments

Comments
 (0)