From 30a861bb55213199019cf2d9fc3539dcc5328bb2 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 14 Mar 2024 17:25:47 -0700 Subject: [PATCH] Test using `actions-rs/cargo@v1` for fuzzing --- .github/workflows/ci.yaml | 76 +++++++++++++++++++++++++-------------- 1 file changed, 50 insertions(+), 26 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index efb01338..a98bf1c3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -90,15 +90,21 @@ jobs: profile: minimal toolchain: nightly override: true - - - run: cargo install cargo-fuzz + - uses: actions-rs/cargo@v1 + with: + command: install + args: cargo-fuzz - name: compile fuzz - run: | - cargo fuzz build fuzz_read + uses: actions-rs/cargo@v1 + with: + command: fuzz + args: build fuzz_read - name: run fuzz timeout-minutes: 330 - run: | - cargo fuzz run fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=50000000 -max_len=1300 -len_control=0 -dict=fuzz/fuzz.dict + uses: actions-rs/cargo@v1 + with: + command: fuzz + args: run fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=50000000 -max_len=1300 -len_control=0 -dict=fuzz/fuzz.dict - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v4 @@ -117,15 +123,21 @@ jobs: profile: minimal toolchain: nightly override: true - - - run: cargo install cargo-fuzz + - uses: actions-rs/cargo@v1 + with: + command: install + args: cargo-fuzz - name: compile fuzz - run: | - cargo fuzz build --no-default-features fuzz_read + uses: actions-rs/cargo@v1 + with: + command: fuzz + args: build --no-default-features fuzz_read - name: run fuzz timeout-minutes: 331 - run: | - cargo fuzz run --no-default-features fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=250000000 -max_total_time=19800 -max_len=16384 -len_control=0 -dict=fuzz/fuzz.dict + uses: actions-rs/cargo@v1 + with: + command: fuzz + args: run --no-default-features fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=250000000 -max_total_time=19800 -max_len=16384 -len_control=0 -dict=fuzz/fuzz.dict - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v4 @@ -144,15 +156,21 @@ jobs: profile: minimal toolchain: nightly override: true - - - run: cargo install cargo-fuzz + - uses: actions-rs/cargo@v1 + with: + command: install + args: cargo-fuzz - name: compile fuzz - run: | - cargo fuzz build fuzz_write + uses: actions-rs/cargo@v1 + with: + command: fuzz + args: build fuzz_write - name: run fuzz - timeout-minutes: 330 - run: | - cargo fuzz run fuzz_write -- -timeout=10s -fork=2 -runs=10000000 -max_len=1100 -len_control=200 -dict=fuzz/fuzz.dict + timeout-minutes: 331 + uses: actions-rs/cargo@v1 + with: + command: fuzz + args: run fuzz_write -- -timeout=10s -fork=2 -runs=10000000 -max_len=1100 -len_control=200 -dict=fuzz/fuzz.dict - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v4 @@ -171,15 +189,21 @@ jobs: profile: minimal toolchain: nightly override: true - - - run: cargo install cargo-fuzz + - uses: actions-rs/cargo@v1 + with: + command: install + args: cargo-fuzz - name: compile fuzz - run: | - cargo fuzz build --no-default-features fuzz_write + uses: actions-rs/cargo@v1 + with: + command: fuzz + args: build --no-default-features fuzz_write - name: run fuzz - timeout-minutes: 330 - run: | - cargo fuzz run --no-default-features fuzz_write -- -timeout=10s -fork=2 -runs=20000000 -max_len=10000 -len_control=200 -dict=fuzz/fuzz.dict + timeout-minutes: 331 + uses: actions-rs/cargo@v1 + with: + command: fuzz + args: run --no-default-features fuzz_write -- -timeout=10s -fork=2 -runs=20000000 -max_len=10000 -len_control=200 -dict=fuzz/fuzz.dict - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v4