Skip to content

Commit

Permalink
So much syntax churn
Browse files Browse the repository at this point in the history
  • Loading branch information
walbourn committed Jul 29, 2024
1 parent a6bf70f commit 1910030
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 @@ -112,14 +112,14 @@ jobs:
timeout-minutes: 30
name: 'Test (CPU only)'
working-directory: ${{ github.workspace }}
run: ctest --preset=${{ matrix.build_type }} -L Library $env:CTEST_DEBUG_OPTS
run: ctest --preset=${{ matrix.build_type }} -L Library ${env:CTEST_DEBUG_OPTS}
env:
CTEST_DEBUG_OPTS: ${{ runner.debug == '1' && '--output-on-failure' || '' }}

- if: (matrix.build_type == 'x64-Release') || (matrix.build_type == 'x86-Release')
timeout-minutes: 30
name: 'Test (ImageFormats)'
working-directory: ${{ github.workspace }}
run: ctest --preset=${{ matrix.build_type }} -L ImageFormats $env:CTEST_DEBUG_OPTS
run: ctest --preset=${{ matrix.build_type }} -L ImageFormats ${env:CTEST_DEBUG_OPTS}
env:
CTEST_DEBUG_OPTS: ${{ runner.debug == '1' && '--output-on-failure' || '' }}

0 comments on commit 1910030

Please sign in to comment.