Skip to content

Commit 88f77ca

Browse files
committed
Remove RAL features from CI
1 parent 34dc796 commit 88f77ca

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

.github/workflows/ci.yml

+2-10
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,6 @@ jobs:
2929

3030
# For each chip, build and lint the main library
3131
clippy:
32-
strategy:
33-
matrix:
34-
features:
35-
- "imxrt-ral/imxrt1011"
36-
- "imxrt-ral/imxrt1015"
37-
- "imxrt-ral/imxrt1021"
38-
- "imxrt-ral/imxrt1062,__log"
3932
runs-on: ubuntu-latest
4033
steps:
4134
- uses: actions/checkout@v2
@@ -49,7 +42,7 @@ jobs:
4942
- uses: actions-rs/clippy-check@v1
5043
with:
5144
token: ${{ secrets.GITHUB_TOKEN }}
52-
args: --verbose --features ${{ matrix.features }} --target thumbv7em-none-eabihf -- -D warnings
45+
args: --verbose --features __log --target thumbv7em-none-eabihf -- -D warnings
5346
name: Lint the library
5447

5548
# Run unit and documentation tests for a chip
@@ -61,7 +54,7 @@ jobs:
6154
uses: actions-rs/cargo@v1
6255
with:
6356
command: test
64-
args: --verbose --features imxrt-ral/imxrt1062
57+
args: --verbose
6558

6659
# Build & lint the teensy4 examples
6760
teensy4-clippy:
@@ -114,4 +107,3 @@ jobs:
114107
uses: actions-rs/cargo@v1
115108
with:
116109
command: rustdoc
117-
args: --features imxrt-ral/imxrt1062

.github/workflows/doc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
toolchain: stable
2020

2121
- name: Generate docs
22-
run: cargo rustdoc --features imxrt-ral/imxrt1062 --target thumbv7em-none-eabihf
22+
run: cargo rustdoc --target thumbv7em-none-eabihf
2323

2424
- name: Write redirect
2525
run: echo "<meta http-equiv=\"refresh\" content=\"0;url=imxrt_usbd\">" > target/thumbv7em-none-eabihf/doc/index.html

0 commit comments

Comments
 (0)