mirror of
https://github.com/uutils/coreutils
synced 2024-12-15 15:52:42 +00:00
615b562b64
* fix-5443 by using strategy
74 lines
2 KiB
YAML
74 lines
2 KiB
YAML
name: Fuzzing
|
|
|
|
# spell-checker:ignore fuzzer
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
# End the current execution if there is a new changeset in the PR.
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
|
|
|
jobs:
|
|
fuzz-build:
|
|
name: Build the fuzzers
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@nightly
|
|
- name: Install `cargo-fuzz`
|
|
run: cargo install cargo-fuzz
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
shared-key: "cargo-fuzz-cache-key"
|
|
cache-directories: "fuzz/target"
|
|
- name: Run `cargo-fuzz build`
|
|
run: cargo +nightly fuzz build
|
|
|
|
fuzz-run:
|
|
needs: fuzz-build
|
|
name: Run the fuzzers
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
RUN_FOR: 60
|
|
strategy:
|
|
matrix:
|
|
test-target:
|
|
[
|
|
fuzz_date,
|
|
fuzz_test,
|
|
fuzz_expr,
|
|
fuzz_parse_glob,
|
|
fuzz_parse_size,
|
|
fuzz_parse_time,
|
|
# adding more fuzz tests here.
|
|
# e.g. fuzz_test_a,
|
|
]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@nightly
|
|
- name: Install `cargo-fuzz`
|
|
run: cargo install cargo-fuzz
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
shared-key: "cargo-fuzz-cache-key"
|
|
cache-directories: "fuzz/target"
|
|
- name: Restore Cached Corpus
|
|
uses: actions/cache/restore@v3
|
|
with:
|
|
key: corpus-cache-${{ matrix.test-target }}
|
|
path: |
|
|
fuzz/corpus/${{ matrix.test-target }}
|
|
- name: Run ${{ matrix.test-target }} for XX seconds
|
|
shell: bash
|
|
run: |
|
|
cargo +nightly fuzz run ${{ matrix.test-target }} -- -max_total_time=${{ env.RUN_FOR }} -detect_leaks=0
|
|
- name: Save Corpus Cache
|
|
uses: actions/cache/save@v3
|
|
with:
|
|
key: corpus-cache-${{ matrix.test-target }}
|
|
path: |
|
|
fuzz/corpus/${{ matrix.test-target }}
|