Skip to content

Commit

Permalink
Add RelWithDebInfo sanitizer CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Nov 20, 2024
1 parent f1041b1 commit 79aa245
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/linux_asan_ubsan_lsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
# --privileged is enabled for sysctl further down.
options: --privileged

strategy:
matrix:
build_type: ["Debug", "RelWithDebInfo"]

steps:
- uses: actions/checkout@v4
- name: Update apt repositories for ccache
Expand All @@ -41,7 +45,7 @@ jobs:
-Bbuild \
-GNinja \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_BUILD_TYPE= ${{ matrix.build_type }} \
-DPIKA_WITH_MALLOC=system \
-DPIKA_WITH_MPI=ON \
-DPIKA_WITH_EXAMPLES=ON \
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/linux_tsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
# --privileged is enabled for sysctl further down.
options: --privileged

strategy:
matrix:
build_type: ["Debug", "RelWithDebInfo"]

steps:
- uses: actions/checkout@v4
- name: Update apt repositories for ccache
Expand All @@ -48,7 +52,7 @@ jobs:
-Bbuild \
-GNinja \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
-DPIKA_WITH_MALLOC=system \
-DPIKA_WITH_MPI=ON \
-DPIKA_WITH_EXAMPLES=ON \
Expand Down

0 comments on commit 79aa245

Please sign in to comment.