-
Notifications
You must be signed in to change notification settings - Fork 10
423 lines (403 loc) · 13.7 KB
/
test.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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
name: test
on:
pull_request:
push:
branches:
- master
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
# https://users.rust-lang.org/t/cross-compiling-how-to-statically-link-glibc/83907/2
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER: aarch64-linux-gnu-gcc
# https://github.com/Mozilla-Actions/sccache-action#rust-code
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: sccache
jobs:
skip-check:
continue-on-error: false
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5.3.1
with:
concurrent_skipping: same_content
do_not_skip: '["pull_request"]'
build:
name: build (${{ matrix.os }} native + ${{ matrix.target2 }})
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
# target: x86_64-pc-windows-msvc
target2: aarch64-pc-windows-msvc
- os: macos-latest
# target: aarch64-apple-darwin
target2: x86_64-apple-darwin
- os: ubuntu-latest
# target: x86_64-unknown-linux-musl
target2: aarch64-unknown-linux-musl
steps:
- uses: actions/checkout@v4
- name: Setup extra build tools
if: matrix.target2 == 'aarch64-unknown-linux-musl'
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- name: Setup Rust
if: ${{ steps.cache_build.outputs.cache-hit != 'true' }}
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target2 }}
- name: Setup `cargo-binstall` and `taplo`
uses: taiki-e/install-action@v2
with:
tool: taplo-cli
- name: Check TOML format
if: ${{ contains(matrix.os, 'ubuntu') }}
run: |
taplo fmt
git diff --exit-code
- name: Check Rust format
if: ${{ contains(matrix.os, 'ubuntu') }}
run: |
cargo fmt --all --check
- name: Lint Rust
run: |
cargo clippy --all-targets --all-features
- name: Build
if: ${{ steps.cache_build.outputs.cache-hit != 'true' }}
run: |
cargo build --verbose --locked
cargo build --verbose --locked --target=${{ matrix.target2 }}
choco-test:
runs-on: windows-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
steps:
- uses: actions/checkout@v4
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-pc-windows-msvc
- name: Build and run tests
env:
CARGO_BUILD_TARGET: x86_64-pc-windows-msvc
run: |
cargo build --verbose
cargo test --features=test tests
cargo test --features=test choco -- --test-threads=1
cargo test --features=test choco -- --ignored --test-threads=1
scoop-winget-test:
runs-on: windows-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
steps:
- uses: actions/checkout@v4
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-pc-windows-msvc
- name: Install scoop
shell: powershell
run: |
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force
iwr -useb 'https://raw.githubusercontent.com/scoopinstaller/install/master/install.ps1' -outfile 'install.ps1'
.\install.ps1 -RunAsAdmin
(Resolve-Path ~\scoop\shims).Path >> $Env:GITHUB_PATH
- name: Verify scoop installation
run: |
Get-Command scoop
powershell scoop help
# Ironically, to install winget we need to install scoop first :D
# See: https://github.com/microsoft/winget-cli/issues/1328#issuecomment-1208640211
- name: Install winget
shell: powershell
run: scoop install winget
- name: Verify winget installation
run: |
Get-Command winget
winget --info
- name: Build and run tests
env:
CARGO_BUILD_TARGET: x86_64-pc-windows-msvc
run: |
cargo build --verbose
cargo test --features=test tests
cargo test --features=test scoop
cargo test --features=test winget
cargo test --features=test scoop -- --ignored
cargo test --features=test winget -- --ignored
brew-test:
runs-on: macos-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
steps:
- uses: actions/checkout@v4
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin
- name: Build and run tests
env:
CARGO_BUILD_TARGET: aarch64-apple-darwin
run: |
cargo build --verbose
cargo test --features=test tests
cargo test --features=test brew
cargo test --features=test brew -- --ignored
port-test:
runs-on: macos-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
steps:
- uses: actions/checkout@v4
- name: Get OS build
run: |
sw_vers > macos_build.txt
cat macos_build.txt
# https://github.com/actions/cache/issues/629#issuecomment-1189184648
- name: Create gtar wrapper
run: |
mkdir target
cat << 'EOF' > "target/gtar"
#!/bin/bash
set -x
exec sudo /opt/homebrew/bin/gtar.orig "$@"
EOF
- name: Install gtar wrapper
run: |
sudo mv /opt/homebrew/bin/gtar /opt/homebrew/bin/gtar.orig
sudo mv target/gtar /opt/homebrew/bin/gtar
sudo chmod +x /opt/homebrew/bin/gtar
/opt/homebrew/bin/gtar --usage
- name: Cache MacPorts
id: cache-macports
uses: actions/cache@v4
with:
path: /opt/local/
key: ${{ runner.os }}-macports-${{ hashFiles('macos_build.txt') }}
- name: Restore MacPorts PATH
if: steps.cache-macports.outputs.cache-hit == 'true'
run: echo "/opt/local/bin" >> "$GITHUB_PATH"
- name: Install MacPorts
if: steps.cache-macports.outputs.cache-hit != 'true'
run: |
curl -LO https://raw.githubusercontent.com/GiovanniBussi/macports-ci/master/macports-ci
source ./macports-ci install
sudo port install wget
port installed
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin
- name: Build and run tests
env:
CARGO_BUILD_TARGET: aarch64-apple-darwin
run: |
cargo build --verbose
cargo test --features=test tests
cargo test --features=test port
cargo test --features=test port -- --ignored
apt-test:
runs-on: ubuntu-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
steps:
- uses: actions/checkout@v4
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- name: Build and run tests
env:
CARGO_BUILD_TARGET: x86_64-unknown-linux-musl
run: |
cargo build --verbose
cargo test --features=test tests
cargo test --features=test apt
cargo test --features=test apt -- --ignored
dnf-test:
runs-on: ubuntu-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
container:
image: fedora:latest
steps:
- uses: actions/checkout@v4
- name: Setup extra build tools
run: dnf install -y make automake gcc gcc-c++ kernel-devel
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- name: Build and run tests
env:
CARGO_BUILD_TARGET: x86_64-unknown-linux-musl
run: |
cargo build --verbose
cargo test --features=test tests
cargo test --features=test dnf
cargo test --features=test dnf -- --ignored
emerge-test:
runs-on: ubuntu-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
container:
image: gentoo/stage3
steps:
- uses: actions/checkout@v4
- name: Setup extra build tools
run: |
# `pacaptr -Ss` might fail without this line.
emerge --sync || true
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- name: Build and run tests
env:
CARGO_BUILD_TARGET: x86_64-unknown-linux-musl
run: |
cargo build --verbose
cargo test --features=test tests
cargo test --features=test emerge
cargo test --features=test emerge -- --ignored
xbps-test:
runs-on: ubuntu-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
container:
image: ghcr.io/void-linux/void-glibc-full:latest
steps:
- name: Setup extra build tools
run: |
xbps-install -y -Su || (xbps-install -y -u xbps && xbps-install -y -Su)
xbps-install -y base-devel curl bash
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- name: Build and run tests
env:
CARGO_BUILD_TARGET: x86_64-unknown-linux-musl
run: |
cargo build --verbose
cargo test --features=test tests
cargo test --features=test xbps
cargo test --features=test xbps -- --ignored
zypper-test:
runs-on: ubuntu-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
container:
image: registry.opensuse.org/opensuse/bci/rust:latest
steps:
- name: Setup extra build tools
run: zypper install -y tar gzip curl gcc bash
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- name: Build and run tests
env:
CARGO_BUILD_TARGET: x86_64-unknown-linux-musl
run: |
cargo build --verbose
cargo test --features=test tests
cargo test --features=test zypper -- --test-threads=1
cargo test --features=test zypper -- --ignored --test-threads=1
apk-test:
runs-on: ubuntu-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
container:
image: rust:alpine
steps:
- name: Setup extra build tools
run: |
apk add -U build-base tar bash
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- name: Build and run tests
env:
RUSTFLAGS: "-C target-feature=-crt-static"
CARGO_BUILD_TARGET: x86_64-unknown-linux-musl
run: |
cargo build --verbose
cargo test --features=test tests
cargo test --features=test apk
cargo test --features=test apk -- --ignored
pkcon-pip-conda-test:
runs-on: ubuntu-latest
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
steps:
- uses: actions/checkout@v4
- name: Setup extra build tools
run: |
sudo apt-get update
sudo apt-get install -y packagekit packagekit-tools
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.6
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- name: Build and run tests
env:
CARGO_BUILD_TARGET: x86_64-unknown-linux-musl
run: |
cargo build --verbose
cargo test --features=test pkcon
cargo test --features=test pip
cargo test --features=test conda
cargo test --features=test pkcon -- --ignored
cargo test --features=test pip -- --ignored
cargo test --features=test conda -- --ignored
# https://github.com/PyO3/pyo3/blob/42601f3af94242b017402b763a495798a92da8f8/.github/workflows/ci.yml#L452-L472
conclusion:
needs:
- build
- choco-test
- scoop-winget-test
- brew-test
- port-test
- apt-test
- dnf-test
- emerge-test
- xbps-test
- zypper-test
- apk-test
- pkcon-pip-conda-test
if: always()
runs-on: ubuntu-latest
steps:
- name: Result
run: |
jq -C <<< "${needs}"
# Check if all needs were successful or skipped.
"$(jq -r 'all(.result as $result | (["success", "skipped"] | contains([$result])))' <<< "${needs}")"
env:
needs: ${{ toJson(needs) }}