From ab80107dfb29a82696311f07ba9c84965e014506 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Thu, 25 Jun 2020 10:01:23 -0700 Subject: [PATCH] CI: use `cargo fuzz` 0.8.X It has switched to release+debug assertion builds by default, so pass `--dev` to avoid compiling with optimizations. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7143392fe0..fc75f9f17a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -124,10 +124,10 @@ jobs: - uses: ./.github/actions/install-rust with: toolchain: nightly-2020-06-03 - - run: cargo install cargo-fuzz --vers "^0.7" + - run: cargo install cargo-fuzz --vers "^0.8" - run: cargo fetch working-directory: ./fuzz - - run: cargo fuzz build --features binaryen + - run: cargo fuzz build --dev --features binaryen rebuild_peephole_optimizers: name: Rebuild Peephole Optimizers