Skip to content

Commit

Permalink
Try to fix test pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
walbourn committed Jul 28, 2024
1 parent 82694f4 commit 42f3130
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ jobs:
working-directory: ${{ github.workspace }}
run: cmake --build out\build\${{ matrix.build_type }}

- if: (${{ matrix.build_type }} == 'x64-Release') || (${{ matrix.build_type }} == 'x86-Release')
- if: (matrix.build_type == 'x64-Release') || (matrix.build_type == 'x86-Release')
timeout-minutes: 10
name: 'Test'
working-directory: ${{ github.workspace }}
run: ctest --preset=${{ matrix.build_type }} --test-dir out
run: ctest --preset=${{ matrix.build_type }}

0 comments on commit 42f3130

Please sign in to comment.