60 lines
1.3 KiB
YAML
60 lines
1.3 KiB
YAML
name: fuzz
|
|
|
|
on:
|
|
schedule:
|
|
# Run every 24h
|
|
- cron: "0 0 * * *"
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: fuzz
|
|
|
|
jobs:
|
|
fuzz:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
target: [avx2, sse2, ssse3]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: setup
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: nightly
|
|
override: true
|
|
|
|
- uses: Swatinem/rust-cache@v1
|
|
- run: cargo install cargo-fuzz
|
|
|
|
- name: Download corpus artifact
|
|
run: |
|
|
wget https://nightly.link/mcountryman/simd-adler32/workflows/fuzz.yaml/main/corpus.zip
|
|
mkdir -p corpus
|
|
unzip corpus.zip -d corpus
|
|
|
|
# keep going if artifact doesn't exist
|
|
continue-on-error: true
|
|
|
|
- name: Run fuzz test (30m)
|
|
run: |
|
|
cargo fuzz run ${{ matrix.target }} -- -max_total_time=1800
|
|
|
|
- name: Archive artifacts
|
|
uses: actions/upload-artifact@v2
|
|
if: failure()
|
|
with:
|
|
name: artifacts
|
|
path: fuzz/artifacts
|
|
|
|
# big decision. do we store corpus from failed jobs? for now we don't..
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: corpus
|
|
path: |
|
|
fuzz/corpus/
|
|
fuzz/corpus/${{ matrix.target }}
|