-
Notifications
You must be signed in to change notification settings - Fork 2
584 lines (571 loc) · 19.6 KB
/
rust.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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
# rust.yml
#
# github workflows action file for super-speedy-syslog-searcher
#
# yaml-language-server: $schema=https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json
---
name: Rust
on:
push:
paths:
- .github/**
- Cargo.toml
- src/**.rs
pull_request:
paths:
- benches/**
- .github/**
- Cargo.toml
- "**.rs"
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
# should match first value in matrix.msrv
MSRV_UPLOAD: "1.66.0"
# run options for debug
S4_ARGSD: --blocksz 0x2 -s
# run options for release
S4_ARGSR: --blocksz 0x40 -s
# run files
S4_TEST_FILES: ./logs/other/tests/dtf2-2.log
./logs/other/tests/dtf3-2a.log
./logs/other/tests/dtf5-6a.log.gz
./logs/other/tests/dtf7-20-LEVELS.log.xz
./logs/other/tests/gen-2-1.tar
./logs/other/tests/gen-20-1-faces.log
./logs/other/tests/gen-20-1-⚀⚁⚂⚃⚄⚅.log
./logs/other/tests/gen-20-2-2-faces.log
./logs/programs/utmp/host-entry6.wtmp
./logs/programs/journal/RHE_91_system.journal
jobs:
job_rust_msrv_os:
# this job downloads and builds dependency crates
name: build ${{ matrix.msrv }} on ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
# first `msrv` should match Cargo.toml:[package]:rust-version
# add a few more for sanity checks (you might be surprised)
# concise listing at https://releases.rs/
msrv: ["1.66.0", "1.67.1", "1.68.0", "1.70.0"]
runs-on: ${{ matrix.os }}
steps:
# Issue #62: `git config` to workaround `git checkout` error on Windows
- run: |
git config --global core.protectNTFS false
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.msrv }}
- name: Build using rust ${{ matrix.msrv }} on ${{ matrix.os }}
shell: bash
run: |
set -eux
rustc --print cfg
cargo --version
cargo build --verbose
cargo build --release
./target/release/s4 --help
- name: Upload release binary ${{ env.MSRV_UPLOAD }} for ${{ matrix.os }}
if: ${{ matrix.os == 'windows-latest' && matrix.msrv == env.MSRV_UPLOAD }}
uses: actions/upload-artifact@v3
with:
name: s4.exe ${{ matrix.os }}
path: ./target/release/s4.exe
- name: Upload release binary ${{ env.MSRV_UPLOAD }} for ${{ matrix.os }}
if: ${{ matrix.os == 'ubuntu-latest' && matrix.msrv == env.MSRV_UPLOAD }}
uses: actions/upload-artifact@v3
with:
name: s4 ${{ matrix.os }}
path: ./target/release/s4
- name: Upload release binary ${{ env.MSRV_UPLOAD }} for ${{ matrix.os }}
if: ${{ matrix.os == 'macos-latest' && matrix.msrv == env.MSRV_UPLOAD }}
uses: actions/upload-artifact@v3
with:
name: s4 ${{ matrix.os }}
path: ./target/release/s4
job_rust_release_channel:
# this job downloads and builds dependency crates
name: build release channel ${{ matrix.rust_version }}
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
rust_version: ["stable", "beta"]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
name: toolchain ${{ matrix.rust_version }}
with:
profile: minimal
toolchain: ${{ matrix.rust_version }}
- uses: Swatinem/rust-cache@v2
- name: Build using rust ${{ matrix.rust_version }}
run: |
set -eux
cargo --version
cargo build
cargo build --release
./target/release/s4 --help
job_build_debug_release:
# this job downloads and builds dependency crates
name: build debug and release, upload
needs: [job_rust_release_channel, job_rust_msrv_os]
runs-on: ubuntu-latest
steps:
# build & upload debug
- name: git checkout
uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
name: toolchain ${{ env.MSRV_UPLOAD }}
with:
profile: minimal
toolchain: ${{ env.MSRV_UPLOAD }}
- name: Build Debug
shell: bash
run: |
set -eux
cargo --version
cargo build --verbose
cp -av ./target/debug/s4 ./s4_debug
- name: Upload debug binary for test
uses: actions/upload-artifact@v3
with:
name: s4_debug
path: ./s4_debug
# build & upload release
- name: Build Release
shell: bash
run: |
set -eux
cargo --version
cargo build --release --verbose
cp -av ./target/release/s4 ./s4_release
- name: Upload release binary for test
uses: actions/upload-artifact@v3
with:
name: s4_release
path: ./s4_release
- name: Upload release binary (Ubuntu Linux)
uses: actions/upload-artifact@v3
with:
name: s4
path: ./target/release/s4
# - name: Run valgrind
# run: |
# set -eux
# sudo apt install -y valgrind g++
# SCRIPT=./tools/valgrind-dhat.sh
# chmod -v +x -- "${PROGRAM}" "${SCRIPT}"
# "${SCRIPT}"
job_check:
# this job downloads and builds dependency crates
name: check
needs: [job_rust_release_channel, job_rust_msrv_os]
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Check
shell: bash
# `cargo check` builds dependences and other things but skips
# final code generation
run: |
set -eux
cargo --version
cargo check --all-targets
cargo check --all-targets --release
job_clippy:
# this job downloads and builds dependency crates
name: clippy
needs: [job_rust_release_channel, job_rust_msrv_os]
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Clippy
shell: bash
run: |
set -eux
cargo --version
cargo clippy --version
cargo clippy --no-deps --verbose --all-targets --all-features
job_bench:
# this job downloads and builds dependency crates
name: bench
needs: [job_rust_release_channel, job_rust_msrv_os]
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Bench Dry Run
shell: bash
run: |
set -eux
cargo --version
cargo bench --no-run
job_test:
# this job downloads and builds dependency crates
name: test
needs: [job_rust_release_channel, job_rust_msrv_os]
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Install libsystemd
shell: bash
run: |
set -eux
sudo apt update || true
(find / -xdev \
\( -type f -o -type l \) \
-name 'libsystemd*' 2>/dev/null || true) \
| sort
sudo apt install --yes libsystemd0
(find / -xdev \
\( -type f -o -type l \) \
-name 'libsystemd*' 2>/dev/null || true) \
| sort
- name: test (limited)
# sanity check tests requiring libsystemd can run
shell: bash
run: |
set -eux
# can libsystemd be found?
(find / -xdev \
\( -type f -o -type l \) \
-name 'libsystemd*' 2>/dev/null || true) \
| sort
# run tests that use libsystemd
cargo test journalreader_tests
- name: install nextest
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-nextest --locked
- name: nextest (all)
shell: bash
run: |
set -eux
cargo nextest --version
export NEXTEST_TEST_THREADS="num-cpus"
cargo nextest run --bin s4 --lib --fail-fast --final-status-level=all
job_doc_publish:
# this job downloads and builds dependency crates
name: doc, publish
needs: [job_rust_release_channel, job_rust_msrv_os]
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Build Documentation
run: cargo doc --locked --release --no-deps -v
- name: Publish Dry Run
run: cargo publish --verbose --dry-run --allow-dirty
job_yamllint:
# this job installs Python PIP packages
name: yamllint
needs: [job_rust_release_channel, job_rust_msrv_os]
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Use Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
set -eux
python --version
python -m pip \
--disable-pip-version-check \
--no-python-version-warning \
--version
python -m pip install \
--disable-pip-version-check \
--no-python-version-warning \
--no-color \
yamllint
python -m pip list \
--disable-pip-version-check \
--no-python-version-warning \
-v -v
- name: Run yamllint.sh
run: PYTHON=python ./tools/yamllint.sh --format github
job_codecov_validate:
name: codecov validate
needs: [job_rust_release_channel, job_rust_msrv_os]
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Run codecov-validate.sh
run: ./tools/codecov-validate.sh -v
job_runs:
# all of these steps need the s4 binary and the git-committed logs
name: run s4
needs: job_build_debug_release
runs-on: ubuntu-latest
steps:
# checkout for the log files
- name: git checkout
uses: actions/checkout@v3
- name: Install libsystemd
shell: bash
run: |
set -eux
sudo apt update || true
sudo apt install --yes libsystemd0
# download & run debug
- name: Download debug binary
uses: actions/download-artifact@v3
with:
name: s4_debug
- name: Run Program Debug
shell: bash
run: |
set -eux
(find / -xdev \
\( -type f -o -type l \) \
-name 'libsystemd*' 2>/dev/null || true) \
| sort
S4=./s4_debug
chmod -v +x -- ${S4}
${S4} --version
${S4} --help
${S4} --color=never ${S4_TEST_FILES} 2>/dev/null
${S4} ${S4_ARGSD} --color=never ${S4_TEST_FILES} 2>/dev/null
${S4} ${S4_ARGSD} --color=never -l -n -w ${S4_TEST_FILES} 2>/dev/null
${S4} ${S4_ARGSD} --color=never -l -p -w ${S4_TEST_FILES} 2>/dev/null
${S4} ${S4_ARGSD} --color=never -u -n -w ${S4_TEST_FILES} 2>/dev/null
${S4} ${S4_ARGSD} --color=never -u -p -w ${S4_TEST_FILES} 2>/dev/null
${S4} ${S4_ARGSD} --color=always -l -n -w ${S4_TEST_FILES} 2>/dev/null
${S4} ${S4_ARGSD} --color=always -l -p -w ${S4_TEST_FILES} 2>/dev/null
${S4} ${S4_ARGSD} --color=always -u -n -w ${S4_TEST_FILES} 2>/dev/null
${S4} ${S4_ARGSD} --color=always -u -p -w ${S4_TEST_FILES} 2>/dev/null
${S4} -s --color=never -l -n -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=never -l -p -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=never -u -n -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=never -u -p -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=always -l -n -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=always -l -p -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=always -u -n -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=always -u -p -w ${S4_TEST_FILES} &>/dev/null
# download & run release
- name: Download release binary
uses: actions/download-artifact@v3
with:
name: s4_release
- name: Run Program Release
shell: bash
run: |
set -eux
S4=./s4_release
chmod -v +x -- ${S4}
${S4} --version
${S4} --help
${S4} --color=never ${S4_TEST_FILES}
${S4} ${S4_ARGSR} --color=never ${S4_TEST_FILES}
${S4} ${S4_ARGSR} --color=never -l -n -w ${S4_TEST_FILES}
${S4} ${S4_ARGSR} --color=never -l -p -w ${S4_TEST_FILES}
${S4} ${S4_ARGSR} --color=never -u -n -w ${S4_TEST_FILES}
${S4} ${S4_ARGSR} --color=never -u -p -w ${S4_TEST_FILES}
${S4} ${S4_ARGSR} --color=always -l -n -w ${S4_TEST_FILES}
${S4} ${S4_ARGSR} --color=always -l -p -w ${S4_TEST_FILES}
${S4} ${S4_ARGSR} --color=always -u -n -w ${S4_TEST_FILES}
${S4} ${S4_ARGSR} --color=always -u -p -w ${S4_TEST_FILES}
${S4} -s --color=never ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=never -l -n -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=never -l -p -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=never -u -n -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=never -u -p -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=always -l -n -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=always -l -p -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=always -u -n -w ${S4_TEST_FILES} &>/dev/null
${S4} -s --color=always -u -p -w ${S4_TEST_FILES} &>/dev/null
- name: Compare Runs of Debug and Release
shell: bash
run: |
set -eu
S4R=./s4_release
S4D=./s4_debug
OUTR=output-release.txt
OUTD=output-debug.txt
chmod -v +x -- "${S4R}" "${S4D}"
set -x
time ${S4R} --version
time ${S4D} --version
${S4R} -s --blocksz 0x800 --color=never ${S4_TEST_FILES} \
| tee "${OUTR}"
${S4D} -s --blocksz 0x800 --color=never ${S4_TEST_FILES} 2>/dev/null \
| tee "${OUTD}"
diff --version
diff -y --suppress-common-lines --minimal "${OUTR}" "${OUTD}"
- name: Run Script compare-grep-sort
shell: bash
run: |
set -eux
export PROGRAM=./s4_release
SCRIPT=./tools/compare-grep-sort.sh
chmod -v +x -- "${PROGRAM}" "${SCRIPT}"
"${PROGRAM}" --version
"${SCRIPT}"
- name: Run Script compare-current-and-expected
shell: bash
run: |
set -eux
chmod -v +x ./tools/log-files-time-update.sh
./tools/log-files-time-update.sh
export PROGRAM=./s4_release
SCRIPT=./tools/compare-current-and-expected.sh
chmod -v +x -- "${PROGRAM}" "${SCRIPT}"
"${PROGRAM}" --version
"${SCRIPT}"
# Run code coverage then upload code coverage result to codecov.io
# Help from:
# - https://github.com/marketplace/actions/rust-grcov
# - https://eipi.xyz/blog/rust-code-coverage-with-github-workflows/
# - https://github.com/mozilla/grcov/blob/v0.8.18/README.md#example-how-to-generate-gcda-files-for-a-rust-project
# - https://github.com/mozilla/grcov/blob/v0.8.18/README.md#lcov-output
job_grcov:
name: grcov
runs-on: ubuntu-latest
needs: job_runs
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Install libsystemd
shell: bash
run: |
set -eux
sudo apt update || true
sudo apt install --yes libsystemd0
- name: toolchain ${{ env.MSRV_UPLOAD }}
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ env.MSRV_UPLOAD }}
override: true
- name: cargo install
uses: actions-rs/cargo@v1
with:
command: install
args: -- rustfilt grcov
- name: cargo build with special profiling
uses: actions-rs/cargo@v1
env:
CARGO_INCREMENTAL: 0
RUSTC_BOOTSTRAP: 1
RUSTDOCFLAGS: -Cpanic=abort
RUSTFLAGS: -Zprofile
-Ccodegen-units=1
-Copt-level=0
-Clink-dead-code
-Coverflow-checks=off
-Zpanic_abort_tests
-Cpanic=abort
with:
command: build
- name: cargo test with special profiling
uses: actions-rs/cargo@v1
env:
CARGO_INCREMENTAL: 0
RUSTC_BOOTSTRAP: 1
RUSTDOCFLAGS: -Cpanic=abort
RUSTFLAGS: -Zprofile
-Ccodegen-units=1
-Copt-level=0
-Clink-dead-code
-Coverflow-checks=off
-Zpanic_abort_tests
-Cpanic=abort
with:
command: test
args: --no-fail-fast --all-targets
- name: run grcov
shell: bash
env:
CARGO_INCREMENTAL: 0
RUSTC_BOOTSTRAP: 1
RUSTDOCFLAGS: -Cpanic=abort
RUSTFLAGS: -Zprofile
-Ccodegen-units=1
-Copt-level=0
-Clink-dead-code
-Coverflow-checks=off
-Zpanic_abort_tests
-Cpanic=abort
run: |
set -eux
grcov --version
grcov \
. \
--source-dir ./src \
--log-level DEBUG \
--llvm \
--binary-path ./target/debug/ \
--branch \
--ignore-not-existing \
--output-type lcov \
--output-path lcov.info
ls -l
head lcov.info
# action from https://github.com/codecov/codecov-action
- name: upload codecov
uses: codecov/codecov-action@v3
with:
files: lcov.info
verbose: true
fail_ci_if_error: true
# public repository does not need secret section `with: token`
# see
# https://about.codecov.io/blog/javascript-code-coverage-using-github-actions-and-codecov/
#
# list of acceptable formats:
# https://docs.codecov.com/docs/supported-report-formats
# Run code coverage using cargo-llvm-cov then upload to coveralls.io
job_code_coverage_llvm:
name: llvm-cov
runs-on: ubuntu-latest
needs: job_runs
env:
COVERALLS_FILE: ./coveralls.lcov
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Install libsystemd
shell: bash
run: |
set -eux
sudo apt update || true
sudo apt install --yes libsystemd0
- name: toolchain ${{ env.MSRV_UPLOAD }} minimal
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ env.MSRV_UPLOAD }}
override: true
- name: install cargo-llvm-cov
uses: actions-rs/cargo@v1
with:
command: install
args: -- cargo-llvm-cov
- name: add llvm-tools-preview
shell: bash
run: rustup component add llvm-tools-preview
- name: run llvm-cov
shell: bash
run: |
set -eux
cargo llvm-cov --version
cargo llvm-cov show-env
cargo llvm-cov --lcov --output-path "${COVERALLS_FILE}"
- name: upload coveralls
uses: coverallsapp/github-action@v2
with:
file: ${{ env.COVERALLS_FILE }}
format: lcov
...