diff options
author | Sam Clegg <sbc@chromium.org> | 2023-03-01 17:43:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 01:43:27 +0000 |
commit | e426908d8f0022b13a7ba39725e96fcbe18cb220 (patch) | |
tree | a7ae20986df4dabc45ce39a8fddf246af7e43fa7 /.github | |
parent | 86d025bff8cac969b3f3e69f2b2a2b00116b496c (diff) | |
download | wabt-e426908d8f0022b13a7ba39725e96fcbe18cb220.tar.gz wabt-e426908d8f0022b13a7ba39725e96fcbe18cb220.tar.bz2 wabt-e426908d8f0022b13a7ba39725e96fcbe18cb220.zip |
Fix for BUILD_FUZZ_TOOLS=ON (#2154)
Fixes: #2153
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 4 insertions, 2 deletions
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 |