Skip to content

Commit

Permalink
disable broken address sanitizer on github's windows runner
Browse files Browse the repository at this point in the history
  • Loading branch information
matekelemen committed Aug 7, 2024
1 parent 068a158 commit f2d1e82
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,21 +82,14 @@ jobs:
strategy:
fail-fast: true
matrix:
sanitizer: [none, address]
type: [RelWithDebInfo, Release]
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
if [ "${{ matrix.sanitizer }}" = "none" ]; then
bash build.sh -t "${{ matrix.type }}"
else
bash build.sh -t "${{ matrix.type }}" -o "-DCMAKE_CXX_FLAGS=-fsanitize=${{ matrix.sanitizer }}"
fi
shell: bash
run: bash build.sh -t "${{ matrix.type }}"
- name: Run tests
run: |
git lfs install
Expand Down

0 comments on commit f2d1e82

Please sign in to comment.