-
-
Notifications
You must be signed in to change notification settings - Fork 83
152 lines (143 loc) · 4.16 KB
/
ci.yml
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
name: CI
on:
pull_request:
branches: [main]
schedule:
# runs 1 min after 2 or 1 AM (summer/winter) berlin time
- cron: "1 0 * * *"
merge_group:
env:
CARGO_TERM_COLOR: always
NO_STD_TARGET: thumbv7em-none-eabi # firmware uses atomics
QEMU_TARGET: thumbv7m-none-eabi
jobs:
host:
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
toolchain:
- "stable"
- "1.76" # MSRV
runs-on: ${{ matrix.os }}
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Set Rust version
uses: ./.github/actions/update-rust
with:
toolchain: ${{ matrix.toolchain }}
- name: Install C libraries for tooling on ubuntu
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install libudev-dev libusb-1.0-0-dev
- name: Check that all crates that can be compiled for the host build, check that defmt compiles with different features, run all unit tests on the host
run: cargo xtask -d test-host
cross:
strategy:
matrix:
toolchain:
- "stable"
- "1.76" # MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Rust version
uses: ./.github/actions/update-rust
with:
toolchain: ${{ matrix.toolchain }}
- name: Install Rust targets, build defmt crates for no_std targets, build defmt dependent crates for cortex-m targets, build panic-probe with different features
run: cargo xtask test-cross
lint:
strategy:
matrix:
toolchain:
- "stable"
- "1.76" # MSRV
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set Rust version
uses: ./.github/actions/update-rust
with:
toolchain: ${{ matrix.toolchain }}
- name: Run rustfmt & clippy
run: cargo xtask test-lint
ui:
strategy:
matrix:
toolchain:
- "stable"
- "1.76" # MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Rust version
uses: ./.github/actions/update-rust
with:
toolchain: ${{ matrix.toolchain }}
- name: Install Rust stable, run all UI tests on the host
run: cargo xtask test-ui
mdbook:
strategy:
matrix:
toolchain:
- "stable"
- "1.76" # MSRV
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set Rust version
uses: ./.github/actions/update-rust
with:
toolchain: ${{ matrix.toolchain }}
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: latest
- name: Run book tests
run: cargo xtask test-book
qemu-snapshot:
strategy:
matrix:
toolchain:
- stable
- "1.76" # MSRV
- nightly # some tests use unstable features
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use the latest ${{ matrix.toolchain }} release
uses: ./.github/actions/update-rust
with:
toolchain: ${{ matrix.toolchain }}
- name: Install QEMU_TARGET
run: rustup target add ${{ env.QEMU_TARGET }}
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install qemu qemu-system-arm
- name: Run QEMU snapshot tests
run: cargo xtask test-snapshot
backcompat:
strategy:
matrix:
toolchain:
- "stable"
- "1.76" # MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set Rust version
uses: ./.github/actions/update-rust
with:
toolchain: ${{ matrix.toolchain }}
- name: Install QEMU_TARGET
run: rustup target add ${{ env.QEMU_TARGET }}
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install qemu qemu-system-arm
- name: Run backward compatibility test
run: cargo xtask test-backcompat