-
Notifications
You must be signed in to change notification settings - Fork 1
391 lines (335 loc) · 10.4 KB
/
main.yml
File metadata and controls
391 lines (335 loc) · 10.4 KB
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
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
concurrency:
group: ${{ github.repository }}-${{ github.ref }}-${{ github.head_ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build (Linux x86-64)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust MSRV
uses: dtolnay/rust-toolchain@1.90.0
- name: Build with locked dependencies
run: cargo build --locked
- name: Build with no-default-features
run: cargo build --locked --no-default-features
format:
name: Format Check
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v4
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust MSRV
uses: dtolnay/rust-toolchain@1.90.0
with:
components: clippy
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
test:
name: Test
needs: [build, format, clippy]
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-24.04
target: x86_64-unknown-linux-gnu
rust: stable
- os: ubuntu-24.04
target: x86_64-unknown-linux-musl
rust: stable
- os: ubuntu-24.04-arm
target: aarch64-unknown-linux-gnu
rust: stable
- os: ubuntu-24.04-arm
target: aarch64-unknown-linux-musl
rust: stable
- os: macos-15
target: aarch64-apple-darwin
rust: stable
- os: windows-2025
target: x86_64-pc-windows-msvc
rust: stable
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.rust }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- name: Install musl tools (for musl targets)
if: contains(matrix.target, 'musl')
run: |
sudo apt-get update
sudo apt-get install -y musl-tools
- name: Run tests
run: cargo test --locked --target ${{ matrix.target }}
- name: Run tests (with default features disabled, Linux x86-64 only)
if: matrix.target == 'x86_64-unknown-linux-gnu'
run: cargo test --locked --no-default-features --target ${{ matrix.target }}
docs:
name: Documentation
needs: [build, format, clippy]
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v4
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Build documentation
run: cargo doc --no-deps --all-features
env:
RUSTDOCFLAGS: "-D warnings"
- name: Upload documentation
uses: actions/upload-artifact@v4
with:
name: documentation
path: target/doc/
retention-days: 1
zigbuild:
name: Zig Build (${{ matrix.target }})
needs: [build, format, clippy]
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-24.04
arch: x86-64
target: x86_64-unknown-linux-gnu
zigtargetsuffix: .2.28
- os: ubuntu-24.04-arm
arch: ARM
target: aarch64-unknown-linux-gnu
zigtargetsuffix: .2.28
- os: ubuntu-24.04
arch: x86-64
target: x86_64-unknown-freebsd
zigtargetsuffix: ""
- os: ubuntu-24.04-arm
arch: ARM
target: aarch64-unknown-freebsd
zigtargetsuffix: ""
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
if: matrix.target != 'aarch64-unknown-freebsd'
with:
targets: ${{ matrix.target }}
components: rust-src
- name: Install Rust 1.93 (FreeBSD aarch64 special case)
uses: dtolnay/rust-toolchain@1.93
if: matrix.target == 'aarch64-unknown-freebsd'
with:
components: rust-src
- name: Install Zig
uses: mlugg/setup-zig@v2
with:
version: 0.15.2
- name: Install cargo-zigbuild via cargo-binstall
uses: taiki-e/install-action@v2
with:
tool: cargo-zigbuild@0.21.6
- name: Build with Zig
if: matrix.target != 'aarch64-unknown-freebsd'
run: cargo zigbuild --locked --target ${{ matrix.target }}${{ matrix.zigtargetsuffix }}
- name: Build with Zig (FreeBSD aarch64 special case)
if: matrix.target == 'aarch64-unknown-freebsd'
run: |
RUSTC_BOOTSTRAP=1 RUSTFLAGS="-Z unstable-options -C panic=immediate-abort" cargo zigbuild \
--target aarch64-unknown-freebsd \
-Z build-std=std,panic_abort
- name: Upload celq binary
uses: actions/upload-artifact@v4
with:
name: celq-${{ matrix.target }}
path: target/${{ matrix.target }}/debug/celq
retention-days: 1
test-debian-oldoldstable:
name: Test on Debian Oldoldstable for (${{ matrix.target }})
needs: zigbuild
strategy:
matrix:
include:
- os: ubuntu-24.04
target: x86_64-unknown-linux-gnu
- os: ubuntu-24.04-arm
target: aarch64-unknown-linux-gnu
runs-on: ${{ matrix.os }}
container:
image: debian:oldoldstable
steps:
- uses: actions/checkout@v4
- name: Download celq binary
uses: actions/download-artifact@v4
with:
name: celq-${{ matrix.target }}
path: ./bin
- name: Make binary executable
run: chmod +x ./bin/celq
- name: Run smoke test
run: |
sh .github/scripts/smoke-test.sh ./bin/celq
test-freebsd:
name: Test on FreeBSD (${{ matrix.release }} – ${{ matrix.arch }})
needs: zigbuild
runs-on: ubuntu-latest
strategy:
matrix:
include:
- release: "14.4"
arch: x86_64
artifact: celq-x86_64-unknown-freebsd
- release: "14.4"
arch: aarch64
artifact: celq-aarch64-unknown-freebsd
steps:
- uses: actions/checkout@v4
- name: Download celq binary
uses: actions/download-artifact@v4
with:
name: ${{ matrix.artifact }}
path: ./bin
- name: Test on FreeBSD
uses: vmactions/freebsd-vm@v1
with:
release: ${{ matrix.release }}
arch: ${{ matrix.arch }}
usesh: true
run: |
chmod +x ./bin/celq
sh .github/scripts/smoke-test.sh ./bin/celq
coverage:
name: Code Coverage (Ubuntu 24.04 x86-64)
needs: [build, format, clippy]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- name: Install cargo-llvm-cov via binstall
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- name: Run coverage
run: |
cargo llvm-cov \
--locked \
--summary-only
openbsd:
name: OpenBSD (QEMU)
needs: [build, format, clippy]
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@668c092af3649c4b664c54e4b704aa46782f6f7c # v2
id: filter
with:
filters: |
rust:
- '**/*.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
- '.cirrus.star'
- '.github/workflows/main.yml'
- '.cargo/**'
- 'src/**'
- 'tests/**'
- '.github/scripts/smoke-test.sh'
- name: Test on OpenBSD
if: steps.filter.outputs.rust == 'true'
uses: vmactions/openbsd-vm@v1
with:
release: "7.8"
usesh: true
prepare: |
pkg_add rust
run: |
cargo build --locked
cargo test --locked
netbsd:
name: NetBSD (QEMU)
needs: [build, format, clippy]
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@668c092af3649c4b664c54e4b704aa46782f6f7c # v2
id: filter
with:
filters: |
rust:
- '**/*.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
- '.cirrus.star'
- '.github/workflows/main.yml'
- '.cargo/**'
- 'src/**'
- 'tests/**'
- '.github/scripts/smoke-test.sh'
- name: Test on NetBSD
if: steps.filter.outputs.rust == 'true'
uses: vmactions/netbsd-vm@v1
with:
release: "10.1"
usesh: true
prepare: |
/usr/sbin/pkg_add rust
run: |
cargo build --locked
cargo test --locked
freebsd:
name: FreeBSD (QEMU)
needs: [build, format, clippy]
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@668c092af3649c4b664c54e4b704aa46782f6f7c # v2
id: filter
with:
filters: |
rust:
- '**/*.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
- '.cirrus.star'
- '.github/workflows/main.yml'
- '.cargo/**'
- 'src/**'
- 'tests/**'
- '.github/scripts/smoke-test.sh'
- name: Test on FreeBSD
if: steps.filter.outputs.rust == 'true'
uses: vmactions/freebsd-vm@v1
with:
release: "14.4"
usesh: true
prepare: |
pkg install -y rust
run: |
cargo build --locked
cargo test --locked