-
Notifications
You must be signed in to change notification settings - Fork 29
82 lines (74 loc) · 1.8 KB
/
rust-ci.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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]
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