this repo has no description

Also run compiler tests in CI with -DNDEBUG

authored by bernsteinbear.com and committed by

Max Bernstein 2ca4368c e33e8554

+2
+2
.github/workflows/ci.yml
··· 61 61 run: sudo apt install --yes ${{matrix.PYTHON}} ${{matrix.CC}} valgrind 62 62 - name: Run compiler tests 63 63 run: CC=${{matrix.CC}} CFLAGS="${{matrix.USE_STATIC_HEAP}}" ${{matrix.PYTHON}} compiler_tests.py 64 + - name: Run compiler tests -DNDEBUG 65 + run: CC=${{matrix.CC}} CFLAGS="${{matrix.USE_STATIC_HEAP}} -DNDEBUG" ${{matrix.PYTHON}} compiler_tests.py 64 66 - name: Run compiler tests with ASAN 65 67 run: CC=${{matrix.CC}} CFLAGS="-fsanitize=address ${{matrix.USE_STATIC_HEAP}}" ${{matrix.PYTHON}} compiler_tests.py 66 68 - name: Run compiler tests with UBSAN