Skip to content

Commit

Permalink
ci: Enable AddressSanitizer in Ubuntu workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
devin-ai-integration[bot] authored and ohhmm committed Feb 13, 2025
1 parent 476faef commit de14247
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
# - name: ReConfigure to detect fetched prerequisites
# working-directory: ${{github.workspace}}/build
# run: cmake ${{github.workspace}}
- name: Build
working-directory: ${{github.workspace}}/build
run: cmake --build ${{github.workspace}}/build -j `nproc` --config Debug
- name: Build
working-directory: ${{github.workspace}}/build
run: cmake --build ${{github.workspace}}/build -j `nproc` --config Release
- name: Check
working-directory: ${{github.workspace}}/build
run: ctest . -j`nproc` -C Release -E "ts" --rerun-failed --output-on-failure
- name: Build
working-directory: ${{github.workspace}}/build
run: cmake -DENABLE_ASAN=ON ${{github.workspace}}/build && cmake --config Debug --build ${{github.workspace}}/build -j `nproc`
- name: Check
working-directory: ${{github.workspace}}/build
run: ctest . -j`nproc` -C Debug -E "ts" --rerun-failed --output-on-failure

0 comments on commit de14247

Please sign in to comment.