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!
This commit is contained in:
Alex Crichton
2022-11-18 10:47:11 -06:00
committed by GitHub
parent e5f93d9ec0
commit 4fcbd5bf23

View File

@@ -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.