-
Notifications
You must be signed in to change notification settings - Fork 40
129 lines (120 loc) · 2.89 KB
/
rust-ci.yaml
File metadata and controls
129 lines (120 loc) · 2.89 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Rust CI
env:
SVDTOOLS: svdtools
on:
push:
branches: master
pull_request:
merge_group:
jobs:
rust-ci:
name: Rust-CI
runs-on: ubuntu-latest
needs:
- build
- test
- test_convert
- clippy
- format
- check
- library
- library_test
- configless
- configless_test
if: always()
steps:
- name: Done
run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'
build:
name: Build
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- run: cargo build
- run: cargo doc
test:
name: Test
env:
RUSTFLAGS: "-D warnings"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo test
test_convert:
name: Test Convert
env:
RUSTFLAGS: "-D warnings"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
cargo run --release -- convert res/example1/stm32l4x2.svd stm32l4x2.yaml
cargo run --release -- convert res/example1/stm32l4x2.svd stm32l4x2.json
cargo run --release -- convert stm32l4x2.yaml stm32l4x2.svd
cargo run --release -- convert stm32l4x2.json stm32l4x2.svd
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo clippy -- --deny warnings
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fmt -- --check
check:
name: Check
runs-on: ubuntu-latest
strategy:
matrix:
target:
- stm32
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install svdtools
run: |
cargo install svdtools --path .
- name: Check
run: bash tools/check_${{ matrix.target }}.sh
library:
name: Library Build
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- run: cargo build --no-default-features
- run: cargo doc --no-default-features
library_test:
name: Library Test
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- run: cargo test --no-default-features
configless:
name: Configless Build
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- run: cargo build --no-default-features --features bin
- run: cargo doc --no-default-features --features bin
configless_test:
name: Configless Test
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- run: cargo test --no-default-features --features bin