disable fuzzstandalone github action for now, needs debugging

This commit is contained in:
Matt Johnston 2021-10-18 23:36:23 +08:00
parent f9ced2c880
commit f0495697e5

View File

@ -45,23 +45,23 @@ jobs:
skipcheck: True skipcheck: True
exoticos: True exoticos: True
# Fuzzers run standalone. A bit superfluous with cifuzz, but # # Fuzzers run standalone. A bit superfluous with cifuzz, but
# good to run the whole corpus to keep it working. # # good to run the whole corpus to keep it working.
- name: fuzzing with address sanitizer # - name: fuzzing with address sanitizer
configure_flags: --enable-fuzz --disable-harden --enable-bundled-libtom # configure_flags: --enable-fuzz --disable-harden --enable-bundled-libtom
ldflags: -fsanitize=address # ldflags: -fsanitize=address
extracflags: -fsanitize=address # extracflags: -fsanitize=address
fuzz: True # fuzz: True
cc: clang # cc: clang
# Undefined Behaviour sanitizer # # Undefined Behaviour sanitizer
- name: fuzzing with undefined behaviour sanitizer # - name: fuzzing with undefined behaviour sanitizer
configure_flags: --enable-fuzz --disable-harden --enable-bundled-libtom # configure_flags: --enable-fuzz --disable-harden --enable-bundled-libtom
ldflags: -fsanitize=undefined # ldflags: -fsanitize=undefined
# don't fail with alignment due to https://github.com/libtom/libtomcrypt/issues/549 # # don't fail with alignment due to https://github.com/libtom/libtomcrypt/issues/549
extracflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fsanitize-recover=alignment # extracflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fsanitize-recover=alignment
fuzz: True # fuzz: True
cc: clang # cc: clang
env: env:
MULTI: ${{ matrix.multi }} MULTI: ${{ matrix.multi }}