Skip to content

Commit

Permalink
ci: add cmake retest target
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Mar 3, 2023
1 parent 7ef6b87 commit 3fcc7e7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: cmake
run: |
cmake -B build && cmake --build build
cmake -B build && cmake --build build -t retest
- name: retest
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ jobs:
cmake --version
ninja --version
cmake -S . -B build -G "${{ matrix.config.generators }}" -DCMAKE_C_FLAGS="/WX" -DCMAKE_BUILD_TYPE=${{ matrix.config.build }}
cmake --build build --parallel
cmake --build build --parallel -t retest
build\test\retest.exe -r -v
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: make
run: |
cmake -B build -DCMAKE_C_FLAGS="--coverage" -DCMAKE_EXE_LINKER_FLAGS="--coverage"
cmake --build build -j
cmake --build build -j -t retest
- name: retest
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: cmake
run: |
cmake -B build -DHAVE_THREADS= && cmake --build build -j
cmake -B build -DHAVE_THREADS= && cmake --build build -j -t retest
- name: retest
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: make
run: |
cmake -B build && cmake --build build -j
cmake -B build && cmake --build build -j -t retest
- name: retest
run: |
Expand Down

0 comments on commit 3fcc7e7

Please sign in to comment.