Bug hunting; Do not check with sanitizers in github action, it takes too much time

This commit is contained in:
Daniel Marjamäki 2020-12-06 22:06:55 +01:00
parent db386b2a7f
commit e541d01533
2 changed files with 8 additions and 6 deletions

View File

@ -32,7 +32,8 @@ jobs:
run: |
ASAN_OPTIONS=detect_stack_use_after_return=1 ./testrunner
- name: Bughunting lib
run: |
ASAN_OPTIONS=detect_stack_use_after_return=1 ./cppcheck -D__CPPCHECK__ --bug-hunting -j$(nproc) lib
# This takes too long time right now
# - name: Bughunting lib
# run: |
# ASAN_OPTIONS=detect_stack_use_after_return=1 ./cppcheck -D__CPPCHECK__ --bug-hunting -j$(nproc) lib

View File

@ -32,7 +32,8 @@ jobs:
run: |
UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./testrunner
- name: Bughunting lib
run: |
UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./cppcheck -D__CPPCHECK__ --bug-hunting -j$(nproc) lib
# This takes too long time right now
# - name: Bughunting lib
# run: |
# UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./cppcheck -D__CPPCHECK__ --bug-hunting -j$(nproc) lib