Skip to content

Commit

Permalink
Repeat test multiple times
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmy-park committed Apr 20, 2024
1 parent c326d4b commit ff3f02c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: cmake --build --preset ${{ matrix.preset }} --config ${{ matrix.config }}

- name: Test
run: ctest --preset ${{ matrix.preset }} -C ${{ matrix.config }}
run: ctest --preset ${{ matrix.preset }} -C ${{ matrix.config }} --repeat-until-fail 100

- name: Install
run: cmake --build --preset ${{ matrix.preset }} --config ${{ matrix.config }} -t install
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
-DSINGLETON_INJECT_ABSTRACT_CLASS=${{ matrix.abstract }}
cmake --build build
cd build
ctest -V -C ${{ matrix.config }}
ctest -V -C ${{ matrix.config }} --repeat-until-fail 100
cd ..
cmake --install build
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:

- name: Test
working-directory: build
run: ctest -V -C ${{ matrix.config }}
run: ctest -V -C ${{ matrix.config }} --repeat-until-fail 100

- name: Install
run: cmake --install build
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:

- name: Test
working-directory: build
run: ctest -V -C ${{ matrix.config }}
run: ctest -V -C ${{ matrix.config }} --repeat-until-fail 100

- name: Install
run: cmake --install build

0 comments on commit ff3f02c

Please sign in to comment.