Skip to content

Commit

Permalink
asan flags fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vityaman committed Nov 20, 2024
1 parent cb5e8e3 commit d15dc9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: Build
run: |
if [[ -z "${{ matrix.compiler }}" ]]; then
if [[ -z "${{ matrix.sanitizers }}" ]]; then
SAN=""
else
SAN="-fsanitize=${{ matrix.compiler }}"
SAN="-fsanitize=${{ matrix.sanitizers }}"
fi
bear -- make compile \
COMPILER=${{ matrix.compiler }} \
Expand Down

0 comments on commit d15dc9d

Please sign in to comment.