-
-
Notifications
You must be signed in to change notification settings - Fork 58
351 lines (347 loc) · 13.2 KB
/
main.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
on:
# Trigger the workflow on push to master or any pull request
# Ignore all tags
push:
branches:
- master
tags-ignore:
- "*"
pull_request:
branches:
- "*"
schedule:
# * is a special character in YAML so you have to quote this string
- cron: "13 3 * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
name: 🦀 Rust 🦀
jobs:
rustfmt:
name: 📌 Formatting 📌
runs-on: ubuntu-latest
steps:
- name: ✅ Checkout ✅
uses: actions/checkout@v3
- name: ⭕ Rustfmt Check ⭕
run: cargo fmt --all -- --check
lints-linux:
name: 🕳️ Lints Linux 🕳️
needs: rustfmt
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
rust: "1.67.0"
- os: ubuntu-latest
rust: stable
- os: ubuntu-latest
rust: beta
- os: ubuntu-latest
rust: nightly
steps:
- name: ✅ Checkout ✅
uses: actions/checkout@v3
- name: 💵 Cache 💵
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock', '**/main.yml') }}
- name: 🧰 Toolchain 🧰
run: |
rustup toolchain remove ${{ matrix.rust }}
rm -f ~/.cargo/bin/rustfmt
rm -f ~/.cargo/bin/cargo-fmt
rm -f ~/.cargo/bin/cargo-clippy
rustup toolchain install ${{ matrix.rust }} --profile default
rustup default ${{ matrix.rust }}
- name: 📎 Clippy 📎
run: |
cargo update
cargo clippy -p vergen --all-targets --features build,cargo,git,gitcl,rustc,si -- -Dwarnings
cargo clippy -p vergen --all-targets --features build,cargo,git,git2,rustc,si -- -Dwarnings
cargo clippy -p vergen --all-targets --features build,cargo,git,gix,rustc,si -- -Dwarnings
cargo clippy -p vergen-pretty --all-targets --all-features -- -Dwarnings
lints-macos:
name: 🕳️ Lints MacOS 🕳️
needs: rustfmt
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
rust: "1.67.0"
- os: macos-latest
rust: stable
- os: macos-latest
rust: beta
- os: macos-latest
rust: nightly
steps:
- name: ✅ Checkout ✅
uses: actions/checkout@v3
- name: 💵 Cache 💵
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock', '**/main.yml') }}
- name: 🧰 Toolchain 🧰
run: |
rustup toolchain remove ${{ matrix.rust }}
rustup toolchain install ${{ matrix.rust }} --profile default --no-self-update
rustup default ${{ matrix.rust }}
- name: 📎 Clippy 📎
run: |
cargo update
cargo clippy -p vergen --all-targets --features build,cargo,git,gitcl,rustc,si -- -Dwarnings
cargo clippy -p vergen --all-targets --features build,cargo,git,git2,rustc,si -- -Dwarnings
cargo clippy -p vergen --all-targets --features build,cargo,git,gix,rustc,si -- -Dwarnings
cargo clippy -p vergen-pretty --all-targets --all-features -- -Dwarnings
lints-windows:
name: 🕳️ Lints Windows 🕳️
needs: rustfmt
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows-latest
rust: "1.67.0"
- os: windows-latest
rust: stable
- os: windows-latest
rust: beta
- os: windows-latest
rust: nightly
steps:
- name: ✅ Checkout ✅
uses: actions/checkout@v3
- name: 💵 Cache 💵
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock', '**/main.yml') }}
- name: 🧰 Toolchain 🧰
run: |
rustup toolchain remove ${{ matrix.rust }}
rustup toolchain install ${{ matrix.rust }} --profile default --no-self-update
rustup default ${{ matrix.rust }}
- name: 📎 Clippy 📎
run: |
cargo update
cargo clippy -p vergen --all-targets --features build,cargo,git,gitcl,rustc,si -- -Dwarnings
cargo clippy -p vergen --all-targets --features build,cargo,git,git2,rustc,si -- -Dwarnings
cargo clippy -p vergen --all-targets --features build,cargo,git,gix,rustc,si -- -Dwarnings
cargo clippy -p vergen-pretty --all-targets --all-features -- -Dwarnings
test-linux:
name: 🧪 Linux 🧪
needs: lints-linux
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
rust: "1.67.0"
target: x86_64-unknown-linux-gnu
- os: ubuntu-latest
rust: stable
target: x86_64-unknown-linux-gnu
- os: ubuntu-latest
rust: beta
target: x86_64-unknown-linux-gnu
- os: ubuntu-latest
rust: nightly
target: x86_64-unknown-linux-gnu
steps:
- name: ✅ Checkout ✅
uses: actions/checkout@v3
- name: 💵 Cache 💵
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/coverage
key: ${{ runner.os }}-${{ matrix.rust }}-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock', '**/main.yml') }}
restore-keys: |
${{ runner.os }}-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock', '**/main.yml') }}
- name: 🧰 Toolchain 🧰
run: |
rustup toolchain remove ${{ matrix.rust }}-${{ matrix.target }}
rustup toolchain add ${{ matrix.rust }}-${{ matrix.target }} --profile minimal
rustup default ${{ matrix.rust }}
- name: 💾 Install (cargo-binstall) 💾
uses: cargo-bins/cargo-binstall@main
- name: 💾 Install (tarpaulin, all-features) 💾
continue-on-error: true
run: cargo binstall --no-confirm --no-symlinks cargo-tarpaulin cargo-all-features
- name: 🧪 Test 🧪
run: |
cargo update
cargo test-all-features
cargo test -p vergen -F build,cargo,git,gitcl,rustc,si
cargo test -p vergen -F build,cargo,git,git2,rustc,si
cargo test -p vergen -F build,cargo,git,gix,rustc,si
cargo test -p vergen-pretty -F __vergen_test
cargo test -p vergen-pretty -F __vergen_test,color
cargo test -p vergen-pretty -F __vergen_test,trace
cargo test -p vergen-pretty -F __vergen_test,serde
cargo test -p vergen-pretty -F __vergen_test,color,serde
cargo test -p vergen-pretty -F __vergen_test,color,trace
cargo test -p vergen-pretty -F __vergen_test,trace,serde
cargo test -p vergen-pretty -F __vergen_test,color,serde,trace
- name: 🙊 Code Coverage (vergen) 🙊
run: cargo tarpaulin --config vergen/tarpaulin.toml --exclude-files vergen/src/lib.rs --exclude-files vergen-pretty/* --out xml --output-dir vergen --skip-clean --target-dir target/coverage
- name: 🙊 Code Coverage (vergen-pretty) 🙊
run: cargo tarpaulin --config vergen-pretty/tarpaulin.toml --exclude-files vergen-pretty/src/lib.rs --exclude-files vergen/* --out xml --output-dir vergen-pretty --skip-clean --target-dir target/coverage
- name: 🙊 Upload Code Coverage 🙊
uses: codecov/codecov-action@v3
with:
files: ./vergen/cobertura.xml,./vergen-pretty/cobertura.xml
test-macos:
name: 🧪 MacOS 🧪
needs: lints-macos
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
rust: "1.67.0"
target: x86_64-apple-darwin
- os: macos-latest
rust: stable
target: x86_64-apple-darwin
- os: macos-latest
rust: beta
target: x86_64-apple-darwin
- os: macos-latest
rust: nightly
target: x86_64-apple-darwin
steps:
- name: ✅ Checkout ✅
uses: actions/checkout@v3
- name: 💵 Cache 💵
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-${{ matrix.rust }}-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock', '**/main.yml') }}
restore-keys: |
${{ runner.os }}-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock', '**/main.yml') }}
- name: 🧰 Toolchain 🧰
run: |
rustup toolchain remove ${{ matrix.rust }}-${{ matrix.target }}
rustup toolchain add ${{ matrix.rust }}-${{ matrix.target }} --profile minimal
rustup default ${{ matrix.rust }}
- name: 💾 Install (cargo-binstall) 💾
uses: cargo-bins/cargo-binstall@main
- name: 💾 Install (all-features) 💾
continue-on-error: true
run: cargo binstall --no-confirm --no-symlinks cargo-all-features
- name: 🧪 Test 🧪
run: |
cargo update
cargo test-all-features
cargo test -p vergen -F build,cargo,git,gitcl,rustc,si
cargo test -p vergen -F build,cargo,git,git2,rustc,si
cargo test -p vergen -F build,cargo,git,gix,rustc,si
cargo test -p vergen-pretty -F __vergen_test
cargo test -p vergen-pretty -F __vergen_test,color
cargo test -p vergen-pretty -F __vergen_test,trace
cargo test -p vergen-pretty -F __vergen_test,serde
cargo test -p vergen-pretty -F __vergen_test,color,serde
cargo test -p vergen-pretty -F __vergen_test,color,trace
cargo test -p vergen-pretty -F __vergen_test,trace,serde
cargo test -p vergen-pretty -F __vergen_test,color,serde,trace
test-windows:
name: 🧪 Windows 🧪
needs: lints-windows
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows-latest
rust: "1.67.0"
target: x86_64-pc-windows-msvc
- os: windows-latest
rust: stable
target: x86_64-pc-windows-msvc
- os: windows-latest
rust: beta
target: x86_64-pc-windows-msvc
- os: windows-latest
rust: nightly
target: x86_64-pc-windows-msvc
- os: windows-latest
rust: "1.67.0"
target: x86_64-pc-windows-gnu
- os: windows-latest
rust: stable
target: x86_64-pc-windows-gnu
- os: windows-latest
rust: beta
target: x86_64-pc-windows-gnu
- os: windows-latest
rust: nightly
target: x86_64-pc-windows-gnu
steps:
- name: ✅ Checkout ✅
uses: actions/checkout@v3
- name: 💵 Cache 💵
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-${{ matrix.rust }}-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock', '**/main.yml') }}
restore-keys: |
${{ runner.os }}-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock', '**/main.yml') }}
- name: 🧰 Toolchain 🧰
run: |
rustup toolchain remove ${{ matrix.rust }}-${{ matrix.target }}
rustup toolchain add ${{ matrix.rust }}-${{ matrix.target }} --profile minimal --no-self-update
rustup default ${{ matrix.rust }}
- name: 💾 Install (cargo-binstall) 💾
uses: cargo-bins/cargo-binstall@main
- name: 💾 Install (all-features) 💾
continue-on-error: true
run: cargo binstall --no-confirm --no-symlinks cargo-all-features
- name: 🧪 Test 🧪
run: |
cargo update
cargo test-all-features
cargo test -p vergen -F build,cargo,git,gitcl,rustc,si
cargo test -p vergen -F build,cargo,git,git2,rustc,si
cargo test -p vergen -F build,cargo,git,gix,rustc,si
cargo test -p vergen-pretty -F __vergen_test
cargo test -p vergen-pretty -F __vergen_test,color
cargo test -p vergen-pretty -F __vergen_test,trace
cargo test -p vergen-pretty -F __vergen_test,serde
cargo test -p vergen-pretty -F __vergen_test,color,serde
cargo test -p vergen-pretty -F __vergen_test,color,trace
cargo test -p vergen-pretty -F __vergen_test,trace,serde
cargo test -p vergen-pretty -F __vergen_test,color,serde,trace