From e426908d8f0022b13a7ba39725e96fcbe18cb220 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Wed, 1 Mar 2023 17:43:27 -0800 Subject: Fix for BUILD_FUZZ_TOOLS=ON (#2154) Fixes: #2153 --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a599922c..94247894 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -88,7 +88,7 @@ jobs: WASM2C_CFLAGS: "-march=x86-64-v2" # currently required for SIMDe to pass some tests on x86-64 strategy: matrix: - sanitizer: [asan, ubsan] + sanitizer: [asan, ubsan, fuzz] type: [debug, release] steps: - uses: actions/setup-python@v1 @@ -99,7 +99,9 @@ jobs: submodules: true - run: sudo apt-get install ninja-build - run: make clang-${{ matrix.type }}-${{ matrix.sanitizer }} - - run: make test-clang-${{ matrix.type }}-${{ matrix.sanitizer }} + - if: ${{ matrix.sanitizer }} != fuzz + run: make test-clang-${{ matrix.type }}-${{ matrix.sanitizer }} + build-wasm2c-memchecked: name: wasm2c-memchecked -- cgit v1.2.3