-
-
Notifications
You must be signed in to change notification settings - Fork 0
520 lines (423 loc) · 17 KB
/
Copy pathci.yml
File metadata and controls
520 lines (423 loc) · 17 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
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
name: CI
on:
pull_request:
push:
branches:
- master
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust:
name: Rust (${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 30
env:
RUST_BACKTRACE: 1
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
full_deps: true
run_lints: true
# Future expansion:
# - os: windows-latest
# full_deps: false
# run_lints: false
# - os: macos-latest
# full_deps: false
# run_lints: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Linux system dependencies
if: matrix.full_deps
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
pkg-config \
libegl1-mesa-dev \
libgl1-mesa-dev \
libssl-dev \
libx11-dev \
libxrandr-dev \
libxi-dev \
libxcursor-dev \
libwayland-dev \
libxkbcommon-dev
# Uses rust-toolchain.toml automatically
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Rustfmt (check)
if: matrix.run_lints
run: cargo fmt --all -- --check
- name: Clippy (deny warnings)
if: matrix.run_lints
run: cargo clippy --workspace --all-targets --locked -- -D warnings
- name: Clippy (deny warnings, html5)
if: matrix.run_lints
run: cargo clippy --workspace --all-targets --features html5 --locked -- -D warnings
- name: Clippy (deny warnings, html5 hardening/fuzz)
if: matrix.run_lints
run: cargo clippy --workspace --all-targets --features "html5 html5-fuzzing parser-conformance parser_invariants parser-failure-injection" --locked -- -D warnings
- name: Build (debug, all targets)
run: cargo build --workspace --all-targets --locked
- name: Run tests (default HTML5 build)
run: cargo test --workspace --lib --bins --tests --examples --locked
- name: Run tests (explicit html5 feature lane)
run: cargo test --workspace --lib --bins --tests --examples --features html5 --locked
- name: Run canonical HTML parser conformance observations
run: cargo test -p html --test html5_parser_conformance --features parser-conformance --locked
- name: Run pinned external HTML parser subset
run: make test-html5-external-fixtures
- name: Run typed HTML parser fatal-failure lane
run: make test-html5-parser-fatal-failures
- name: Run HTML5 semantic DOM golden fixtures
run: cargo test -p html --test html5_golden_tree_builder --features "html5 dom-snapshot parser-conformance" --locked
- name: Run HTML5 patch-log golden fixtures
run: cargo test -p html --test html5_golden_tree_builder_patches --features html5 --locked
- name: Run HTML5 smoke corpus
run: cargo test -p html --test html5_smoke_real_pages --features "html5 dom-snapshot" --locked
- name: Run promoted rawtext/script regressions
run: cargo test -p html --test html5_rawtext_script_regressions --features "html5 dom-snapshot parser_invariants" --locked
- name: Run HTML5 pipeline regression snapshots
run: cargo test -p html --test html5_pipeline_regressions --features "html5 html5-fuzzing dom-snapshot parser_invariants" --locked
- name: Run WPT tree-builder slice
run: cargo test -p html --test wpt_html5_tree_builder --features "html5 dom-snapshot" --locked
- name: Build (debug, all targets, html5)
run: cargo build --workspace --all-targets --features html5 --locked
- name: Build (release)
run: cargo build --workspace --release --locked
- name: Build (release, html5)
run: cargo build --workspace --release --features html5 --locked
- name: Compile HTML5 Criterion benches
run: cargo bench -p html --bench html_bench --features html5 --no-run --locked
- name: Check generated HTML entities
run: make html-entities-check
html5_tokenizer_fuzz_smoke:
name: HTML5 tokenizer fuzz smoke
runs-on: ubuntu-latest
timeout-minutes: 10
env:
RUST_BACKTRACE: 1
HTML5_TOKENIZER_FUZZ_SMOKE_SEED: "1592653589"
HTML5_TOKENIZER_FUZZ_SMOKE_RUNS: "128"
HTML5_TOKENIZER_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
HTML5_TOKENIZER_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Run deterministic tokenizer fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/html5_tokenizer_fuzz_smoke.sh 2>&1 | tee ci_artifacts/html5_tokenizer_fuzz_smoke.log
- name: Upload tokenizer fuzz smoke artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: html5-tokenizer-fuzz-smoke-${{ github.sha }}
path: |
ci_artifacts/html5_tokenizer_fuzz_smoke.log
ci_artifacts/html5_tokenizer_fuzz_failure
html5_tokenizer_script_data_fuzz_smoke:
name: HTML5 tokenizer script-data fuzz smoke
runs-on: ubuntu-latest
timeout-minutes: 10
env:
RUST_BACKTRACE: 1
HTML5_TOKENIZER_SCRIPT_DATA_FUZZ_SMOKE_SEED: "1123581321"
HTML5_TOKENIZER_SCRIPT_DATA_FUZZ_SMOKE_RUNS: "128"
HTML5_TOKENIZER_SCRIPT_DATA_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
HTML5_TOKENIZER_SCRIPT_DATA_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Run deterministic script-data fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/html5_tokenizer_script_data_fuzz_smoke.sh 2>&1 | tee ci_artifacts/html5_tokenizer_script_data_fuzz_smoke.log
- name: Upload script-data fuzz smoke artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: html5-tokenizer-script-data-fuzz-smoke-${{ github.sha }}
path: |
ci_artifacts/html5_tokenizer_script_data_fuzz_smoke.log
ci_artifacts/html5_tokenizer_script_data_fuzz_failure
html5_tokenizer_rawtext_fuzz_smoke:
name: HTML5 tokenizer rawtext fuzz smoke
runs-on: ubuntu-latest
timeout-minutes: 10
env:
RUST_BACKTRACE: 1
HTML5_TOKENIZER_RAWTEXT_FUZZ_SMOKE_SEED: "2654435761"
HTML5_TOKENIZER_RAWTEXT_FUZZ_SMOKE_RUNS: "128"
HTML5_TOKENIZER_RAWTEXT_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
HTML5_TOKENIZER_RAWTEXT_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Run deterministic rawtext fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/html5_tokenizer_rawtext_fuzz_smoke.sh 2>&1 | tee ci_artifacts/html5_tokenizer_rawtext_fuzz_smoke.log
- name: Upload rawtext fuzz smoke artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: html5-tokenizer-rawtext-fuzz-smoke-${{ github.sha }}
path: |
ci_artifacts/html5_tokenizer_rawtext_fuzz_smoke.log
ci_artifacts/html5_tokenizer_rawtext_fuzz_failure
html5_tokenizer_rcdata_fuzz_smoke:
name: HTML5 tokenizer rcdata fuzz smoke
runs-on: ubuntu-latest
timeout-minutes: 10
env:
RUST_BACKTRACE: 1
HTML5_TOKENIZER_RCDATA_FUZZ_SMOKE_SEED: "2246822519"
HTML5_TOKENIZER_RCDATA_FUZZ_SMOKE_RUNS: "128"
HTML5_TOKENIZER_RCDATA_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
HTML5_TOKENIZER_RCDATA_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Run deterministic rcdata fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/html5_tokenizer_rcdata_fuzz_smoke.sh 2>&1 | tee ci_artifacts/html5_tokenizer_rcdata_fuzz_smoke.log
- name: Upload rcdata fuzz smoke artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: html5-tokenizer-rcdata-fuzz-smoke-${{ github.sha }}
path: |
ci_artifacts/html5_tokenizer_rcdata_fuzz_smoke.log
ci_artifacts/html5_tokenizer_rcdata_fuzz_failure
html5_tree_builder_token_fuzz_smoke:
name: HTML5 tree-builder token fuzz smoke
runs-on: ubuntu-latest
timeout-minutes: 10
env:
RUST_BACKTRACE: 1
HTML5_TREE_BUILDER_TOKEN_FUZZ_SMOKE_SEED: "3141592653"
HTML5_TREE_BUILDER_TOKEN_FUZZ_SMOKE_RUNS: "128"
HTML5_TREE_BUILDER_TOKEN_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
HTML5_TREE_BUILDER_TOKEN_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Run deterministic tree-builder fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/html5_tree_builder_tokens_fuzz_smoke.sh 2>&1 | tee ci_artifacts/html5_tree_builder_tokens_fuzz_smoke.log
- name: Upload tree-builder fuzz smoke artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: html5-tree-builder-token-fuzz-smoke-${{ github.sha }}
path: |
ci_artifacts/html5_tree_builder_tokens_fuzz_smoke.log
ci_artifacts/html5_tree_builder_token_fuzz_failure
html5_pipeline_fuzz_smoke:
name: HTML5 pipeline fuzz smoke
runs-on: ubuntu-latest
timeout-minutes: 10
env:
RUST_BACKTRACE: 1
HTML5_PIPELINE_FUZZ_SMOKE_SEED: "1414213562"
HTML5_PIPELINE_FUZZ_SMOKE_RUNS: "128"
HTML5_PIPELINE_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
HTML5_PIPELINE_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Run deterministic pipeline fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/html5_pipeline_fuzz_smoke.sh 2>&1 | tee ci_artifacts/html5_pipeline_fuzz_smoke.log
- name: Upload pipeline fuzz smoke artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: html5-pipeline-fuzz-smoke-${{ github.sha }}
path: |
ci_artifacts/html5_pipeline_fuzz_smoke.log
ci_artifacts/html5_pipeline_fuzz_failure
css_fuzz_regressions:
name: CSS fuzz regressions
runs-on: ubuntu-latest
timeout-minutes: 10
env:
RUST_BACKTRACE: 1
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Replay promoted CSS fuzz regressions
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
cargo test -p css --features css-fuzzing --test css_fuzz_regressions --locked \
2>&1 | tee ci_artifacts/css_fuzz_regressions.log
- name: Upload CSS fuzz regression log on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: css-fuzz-regressions-${{ github.sha }}
path: ci_artifacts/css_fuzz_regressions.log
css_syntax_fuzz_smoke:
name: CSS syntax fuzz smoke
runs-on: ubuntu-latest
timeout-minutes: 15
env:
RUST_BACKTRACE: 1
CSS_TOKENIZER_FUZZ_SMOKE_SEED: "1873819023"
CSS_TOKENIZER_FUZZ_SMOKE_RUNS: "128"
CSS_TOKENIZER_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
CSS_TOKENIZER_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
CSS_PARSER_FUZZ_SMOKE_SEED: "2718281828"
CSS_PARSER_FUZZ_SMOKE_RUNS: "128"
CSS_PARSER_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
CSS_PARSER_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Run deterministic CSS tokenizer fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/css_tokenizer_fuzz_smoke.sh 2>&1 | tee ci_artifacts/css_tokenizer_fuzz_smoke.log
- name: Run deterministic CSS parser fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/css_parser_fuzz_smoke.sh 2>&1 | tee ci_artifacts/css_parser_fuzz_smoke.log
- name: Upload CSS syntax fuzz artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: css-syntax-fuzz-smoke-${{ github.sha }}
path: |
ci_artifacts/css_tokenizer_fuzz_smoke.log
ci_artifacts/css_parser_fuzz_smoke.log
ci_artifacts/css_tokenizer_fuzz_failure
ci_artifacts/css_parser_fuzz_failure
css_pipeline_fuzz_smoke:
name: CSS pipeline fuzz smoke
runs-on: ubuntu-latest
timeout-minutes: 20
env:
RUST_BACKTRACE: 1
CSS_SELECTOR_PARSER_FUZZ_SMOKE_SEED: "3141592653"
CSS_SELECTOR_PARSER_FUZZ_SMOKE_RUNS: "128"
CSS_SELECTOR_PARSER_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
CSS_SELECTOR_PARSER_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
CSS_SELECTOR_MATCHING_FUZZ_SMOKE_SEED: "1618033988"
CSS_SELECTOR_MATCHING_FUZZ_SMOKE_RUNS: "128"
CSS_SELECTOR_MATCHING_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
CSS_SELECTOR_MATCHING_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
CSS_CASCADE_FUZZ_SMOKE_SEED: "1414213562"
CSS_CASCADE_FUZZ_SMOKE_RUNS: "128"
CSS_CASCADE_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
CSS_CASCADE_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
CSS_VALUES_FUZZ_SMOKE_SEED: "2449489742"
CSS_VALUES_FUZZ_SMOKE_RUNS: "128"
CSS_VALUES_FUZZ_SMOKE_INPUT_TIMEOUT_SEC: "5"
CSS_VALUES_FUZZ_SMOKE_WALL_TIMEOUT_SEC: "90"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Run deterministic CSS selector parser fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/css_selector_parser_fuzz_smoke.sh 2>&1 | tee ci_artifacts/css_selector_parser_fuzz_smoke.log
- name: Run deterministic CSS selector matching fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/css_selector_matching_fuzz_smoke.sh 2>&1 | tee ci_artifacts/css_selector_matching_fuzz_smoke.log
- name: Run deterministic CSS cascade fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/css_cascade_fuzz_smoke.sh 2>&1 | tee ci_artifacts/css_cascade_fuzz_smoke.log
- name: Run deterministic CSS values fuzz smoke
shell: bash
run: |
set -o pipefail
mkdir -p ci_artifacts
bash ./tools/ci/css_values_fuzz_smoke.sh 2>&1 | tee ci_artifacts/css_values_fuzz_smoke.log
- name: Upload CSS pipeline fuzz artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: css-pipeline-fuzz-smoke-${{ github.sha }}
path: |
ci_artifacts/css_selector_parser_fuzz_smoke.log
ci_artifacts/css_selector_matching_fuzz_smoke.log
ci_artifacts/css_cascade_fuzz_smoke.log
ci_artifacts/css_values_fuzz_smoke.log
ci_artifacts/css_selector_parser_fuzz_failure
ci_artifacts/css_selector_matching_fuzz_failure
ci_artifacts/css_cascade_fuzz_failure
ci_artifacts/css_values_fuzz_failure