-
Notifications
You must be signed in to change notification settings - Fork 20
182 lines (162 loc) · 4.97 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
name: 🔁 Continuous Integration
on:
push:
branches:
- main
pull_request:
merge_group:
jobs:
check_formatting:
runs-on: ubuntu-latest
name: 🗒 Check Rust formatting
steps:
- name: ⬇️ Checkout Source
uses: actions/checkout@v3
- name: 🦀 Install Rustfmt
uses: actions-rs/toolchain@v1
with:
components: rustfmt
- name: 🔧 Check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy_correctness_checks:
runs-on: ubuntu-latest
name: 🔧 Clippy correctness checks
strategy:
fail-fast: false
matrix:
config:
- { target: "x86_64-unknown-linux-gnu", target_dir: "target" }
- { target: "wasm32-unknown-unknown", target_dir: "web-target" }
steps:
- name: ⬇️ Checkout Source
uses: actions/checkout@v3
- name: 🧰 Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y -q \
libasound2-dev \
libudev-dev
- name: 🧰 Install WASM Target
if: matrix.config.target == 'wasm32-unknown-unknown'
uses: actions-rs/toolchain@v1
with:
target: ${{ matrix.config.target }}
components: clippy
- name: 🧰 Install Clippy
if: matrix.config.target != 'wasm32-unknown-unknown'
uses: actions-rs/toolchain@v1
with:
components: clippy
- name: ♻️ Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
web-target/
key: ci-${{ matrix.config.target }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
ci-${{ matrix.config.target }}-
- name: 🔧 Check
uses: actions-rs/cargo@v1
env:
CARGO_TARGET_DIR: ${{ matrix.config.target_dir }}
with:
command: clippy
args: --target ${{ matrix.config.target }} -- -W clippy::correctness -D warnings
- name: ⚙️ Test
if: matrix.config.target != 'wasm32-unknown-unknown'
uses: actions-rs/cargo@v1
env:
CARGO_TARGET_DIR: ${{ matrix.config.target_dir }}
with:
command: test
args: --workspace
minimal_deps_check:
runs-on: ubuntu-latest
name: 🔧 Check Minimal Dependency Versions
steps:
- name: ⬇️ Checkout Source
uses: actions/checkout@v3
- name: 🧰 Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y -q \
libasound2-dev \
libudev-dev
- name: 🧰 Install Rust Nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- name: ♻️ Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: check-minimal-deps-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
check-minimal-deps-
- name: 🔧 Check
uses: actions-rs/cargo@v1
with:
toolchain: nightly
command: check
args: -Z direct-minimal-versions --workspace
cargo-deny:
name: ©️ License and advisories check
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources
# Prevent sudden announcement of a new advisory from failing ci:
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}
miri_tests:
runs-on: ubuntu-latest
name: 📡 Miri tests
steps:
- uses: actions/checkout@v3
- name: 🧰 Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y -q \
libasound2-dev \
libudev-dev
- name: 🧰 Install Miri
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
- name: ♻️ Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
web-target/
key: ci-miri-${{ matrix.config.target }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
ci-miri-${{ matrix.config.target }}-
- name: 📡 Test with Miri
run: |
# Try multiple seeds to catch possible alignment issues
for SEED in $(seq 0 10); do
echo "Trying seed: $SEED"
MIRIFLAGS=-Zmiri-seed=$SEED cargo miri test || { echo "Failing seed: $SEED"; exit 1; };
done