Skip to content

Commit 7dcb79e

Browse files
committed
some smaller fixes
1 parent ea3c8ae commit 7dcb79e

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -56,41 +56,40 @@ jobs:
5656
strategy:
5757
matrix:
5858
include:
59-
- { rust: stable, vendor: Atmel, options: "" }
60-
- { rust: stable, vendor: Atmel, options: "-- --strict --atomics" }
61-
- { rust: stable, vendor: Freescale, options: "" }
59+
# TODO: There are currently no working Atmel tests...
60+
# - { rust: stable, vendor: Atmel }
61+
# - { rust: stable, vendor: Atmel, options: "-- --strict --atomics" }
62+
- { rust: stable, vendor: Freescale }
6263
- { rust: stable, vendor: Freescale, options: "-- --strict --atomics" }
63-
- { rust: stable, vendor: Fujitsu, options: "" }
64+
- { rust: stable, vendor: Fujitsu }
6465
- { rust: stable, vendor: Fujitsu, options: "-- --strict --atomics" }
65-
- { rust: stable, vendor: GD32, options: "" }
66-
- { rust: stable, vendor: GD32, options: "-- --strict --atomics" }
67-
- { rust: stable, vendor: Holtek, options: "" }
66+
- { rust: stable, vendor: Holtek }
6867
- { rust: stable, vendor: Holtek, options: "-- --strict --atomics" }
69-
- { rust: stable, vendor: Atmel, options: "" }
68+
- { rust: stable, vendor: Atmel }
7069
- { rust: stable, vendor: Atmel, options: "-- --strict --atomics" }
71-
- { rust: stable, vendor: Microchip, options: "" }
70+
- { rust: stable, vendor: Microchip }
7271
- { rust: stable, vendor: Microchip, options: "-- --atomics" }
73-
- { rust: stable, vendor: Nordic, options: "" }
72+
- { rust: stable, vendor: Nordic }
7473
- { rust: stable, vendor: Nordic, options: "-- --strict --atomics" }
7574
- { rust: 1.76.0, vendor: Nordic, options: "-- --strict --atomics" }
76-
- { rust: stable, vendor: Nuvoton, options: "" }
75+
- { rust: stable, vendor: Nuvoton }
7776
- { rust: stable, vendor: Nuvoton, options: "-- --strict --atomics" }
78-
- { rust: stable, vendor: NXP, options: "" }
77+
- { rust: stable, vendor: NXP }
7978
- { rust: stable, vendor: NXP, options: "-- --strict --atomics" }
80-
- { rust: stable, vendor: RISC-V, options: "" }
79+
- { rust: stable, vendor: RISC-V }
8180
- { rust: stable, vendor: RISC-V, options: "-- --strict --atomics" }
8281
- { rust: stable, vendor: SiliconLabs, options: "" }
8382
- { rust: stable, vendor: SiliconLabs, options: "-- --strict --atomics" }
84-
- { rust: stable, vendor: Spansion, options: "" }
83+
- { rust: stable, vendor: Spansion }
8584
- { rust: stable, vendor: Spansion, options: "-- --strict --atomics" }
86-
- { rust: stable, vendor: STMico, options: "" }
85+
- { rust: stable, vendor: STMico }
8786
- { rust: stable, vendor: STMico, options: "-- --atomics" }
8887
- { rust: stable, vendor: STMico, options: "-- --strict -f enum_value::p: --max-cluster-size --atomics --atomics-feature atomics --impl-debug --impl-defmt defmt" }
89-
- { rust: stable, vendor: Toschiba, options: "" }
88+
- { rust: stable, vendor: Toschiba }
9089
- { rust: stable, vendor: Toschiba, options: "-- --strict --atomics" }
91-
- { rust: stable, vendor: MSP430, options: "" }
90+
- { rust: stable, vendor: MSP430 }
9291
- { rust: stable, vendor: MSP430, options: "-- --atomics" }
93-
- { rust: stable, vendor: Espressif, options: "" }
92+
- { rust: stable, vendor: Espressif }
9493
- { rust: stable, vendor: Espressif, options: "-- --atomics" }
9594

9695
steps:
@@ -108,7 +107,7 @@ jobs:
108107
cargo install svd2rust --path .
109108
110109
- name: Run regression tool
111-
run: cargo regress tests -m ${{ matrix.vendor }} -- ${{ matrix.options }}
110+
run: cargo regress tests -m ${{ matrix.vendor }} ${{ matrix.options }}
112111

113112
ci-clippy:
114113
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)