diff options
| -rw-r--r-- | .github/workflows/cmake.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index dbce62c1..6cab8755 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -58,7 +58,8 @@ jobs: run: | cd ${{github.workspace}}/build/install export LD_LIBRARY_PATH="$PWD/lib" ASAN_OPTIONS="detect_leaks=0:abort_on_error=1" - xvfb-run gdb -q -batch -x ../../.github/gdbscript.py --args bin/floormat-test </dev/null + set -e + xvfb-run gdb -q -batch -x ../../.github/gdbscript.py --args bin/floormat-test xvfb-run gdb -q -batch -x ../../.github/gdbscript.py --args bin/floormat-benchmark if: matrix.os == 'ubuntu-22.04' |
