Skip to content

Commit

Permalink
Fix compilation option in CI
Browse files Browse the repository at this point in the history
ruicoelhopedro committed Feb 10, 2024
1 parent fad9c22 commit d94d269
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pawn-tests.yaml
Original file line number Diff line number Diff line change
@@ -98,15 +98,15 @@ jobs:
build/pawn bench
- name: Run bench - AddressSanitizer
run: |
make -B -j4 DEBUG=2 SANITIZER=address
make -B -j4 DEBUG=2 SANITIZE=address
build/pawn bench
- name: Run bench - UndefinedBehaviorSanitizer
run: |
make -B -j4 DEBUG=2 SANITIZER=undefined
make -B -j4 DEBUG=2 SANITIZE=undefined
build/pawn bench
- name: Run bench - ThreadSanitizer
run: |
make -B -j4 DEBUG=2 SANITIZER=thread
make -B -j4 DEBUG=2 SANITIZE=thread
TSAN_OPTIONS="suppressions=test/suppressions.tsan" build/pawn bench 13 4 16
- name: Run small bench - valgrind (Linux)
if: runner.os == 'Linux'

0 comments on commit d94d269

Please sign in to comment.