From 4fcbd5bf23dcdd89e28e4d367d6cfe9f836e43f6 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 18 Nov 2022 10:47:11 -0600 Subject: [PATCH] Turn off sanitizers for fuzz build on CI (#5296) This hopefully will speed things up slightly since ASan can add a chunk to the compile time. Unsure if this will actually help, though, so let's find out! --- .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 b18d5d520a..e916694123 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -205,9 +205,9 @@ jobs: - run: sudo apt install -y ocaml-nox ocamlbuild ocaml-findlib libzarith-ocaml-dev - run: cargo fetch working-directory: ./fuzz - - run: cargo fuzz build --dev + - run: cargo fuzz build --dev -s none # Check that the ISLE fuzz targets build too. - - run: cargo fuzz build --dev --fuzz-dir ./cranelift/isle/fuzz + - run: cargo fuzz build --dev -s none --fuzz-dir ./cranelift/isle/fuzz # Perform all tests (debug mode) for `wasmtime`. This runs stable/beta/nightly # channels of Rust as well as macOS/Linux/Windows.