-
Notifications
You must be signed in to change notification settings - Fork 162
61 lines (56 loc) · 1.84 KB
/
clippy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
on:
push:
branches: [ master ]
pull_request:
merge_group:
name: Lints compliance check
env:
CLIPPY_PARAMS: -W clippy::all -W clippy::pedantic -W clippy::nursery -W clippy::cargo
jobs:
clippy:
strategy:
matrix:
toolchain: [ stable, nightly ]
include:
# Nightly is only for reference and allowed to fail
- toolchain: nightly
experimental: true
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental || false }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- name: Run clippy (no features)
run: cargo clippy --all --no-default-features -- -D warnings
- name: Run clippy (all features)
# We exclude riscv-peripheral because it's not yet stable-compliant
run: cargo clippy --exclude riscv-peripheral --all --all-features -- -D warnings
# Additonal clippy checks for riscv-rt
clippy-riscv-rt:
strategy:
matrix:
toolchain: [ stable, nightly ]
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental || false }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- name: Run clippy (s-mode)
run: cargo clippy --package riscv-rt --all --features=s-mode -- -D warnings
- name: Run clippy (single-hart)
run: cargo clippy --package riscv-rt --all --features=single-hart -- -D warnings
# Job to check that all the lint checks succeeded
clippy-check:
needs:
- clippy
- clippy-riscv-rt
runs-on: ubuntu-latest
if: always()
steps:
- run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'