Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Feb 5, 2024
1 parent 57730a0 commit f3c25ee
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_asan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Install CMake
uses: seqan/actions/setup-cmake@main
with:
cmake: 3.13.5
cmake: 3.16.9

- name: Configure tests
run: |
Expand All @@ -64,13 +64,13 @@ jobs:
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_FLAGS="-pedantic -Wall -Wextra -Werror -fsanitize=address ${{ matrix.cxx_flags }}"
make -j2 gtest_build
VERBOSE=1 make -j2 gtest_build
- name: Build tests
run: |
ccache -p
cd ci-build
make sdsl_test_targets sdsl_examples sdsl_tutorials -k -j2
VERBOSE=1 make sdsl_test_targets sdsl_examples sdsl_tutorials -k -j2
ccache -s
- name: Run tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ jobs:
-DCMAKE_CXX_FLAGS="-pedantic -Wall -Wextra -Werror ${{ matrix.cxx_flags }}" \
-DSDSL_CEREAL=1 \
-DSDSL_HEADER_TEST=ON
make -j2 gtest_build
VERBOSE=1 make -j2 gtest_build
- name: Build tests
run: |
ccache -p
cd ci-build
make sdsl_header_test -k -j2
VERBOSE=1 make sdsl_header_test -k -j2
ccache -s
- name: Run tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@ jobs:
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_FLAGS="-pedantic -Wall -Wextra -Werror ${{ matrix.cxx_flags }}" \
-DSDSL_CEREAL=${{ matrix.has_cereal }}
make -j2 gtest_build
VERBOSE=1 make -j2 gtest_build
- name: Build tests
run: |
ccache -p
cd ci-build
make sdsl_test_targets sdsl_examples sdsl_tutorials -k -j2
VERBOSE=1 make sdsl_test_targets sdsl_examples sdsl_tutorials -k -j2
ccache -s
- name: Run tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ jobs:
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_FLAGS="-pedantic -Wall -Wextra -Werror ${{ matrix.cxx_flags }}" \
-DSDSL_CEREAL=${{ matrix.has_cereal }}
make -j3 gtest_build
VERBOSE=1 make -j3 gtest_build
- name: Build tests
run: |
ccache -p
cd ci-build
make sdsl_test_targets sdsl_examples sdsl_tutorials -k -j3
VERBOSE=1 make sdsl_test_targets sdsl_examples sdsl_tutorials -k -j3
ccache -s
- name: Run tests
Expand Down

0 comments on commit f3c25ee

Please sign in to comment.