From e541d01533a52a25d7a0c22b315c4a8ecd07b5b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 6 Dec 2020 22:06:55 +0100 Subject: [PATCH] Bug hunting; Do not check with sanitizers in github action, it takes too much time --- .github/workflows/asan.yml | 7 ++++--- .github/workflows/ubsan.yml | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/asan.yml b/.github/workflows/asan.yml index 0d2a688b0..74affd750 100644 --- a/.github/workflows/asan.yml +++ b/.github/workflows/asan.yml @@ -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 diff --git a/.github/workflows/ubsan.yml b/.github/workflows/ubsan.yml index 268a82a78..8776e9e61 100644 --- a/.github/workflows/ubsan.yml +++ b/.github/workflows/ubsan.yml @@ -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