Skip to content

Commit

Permalink
Use working-directory property
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Dec 2, 2024
1 parent ca092d3 commit ed16574
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -574,10 +574,11 @@ jobs:
if: matrix.arch != 'arm64' && matrix.toolchain != 'msvc'
shell: bash
run: |
echo $RUNNER_TEMP/*/test/unit/lib/testStatusService.exe
ls -l $RUNNER_TEMP/*/test/unit/lib/testStatusService.exe
$RUNNER_TEMP/coverage/test/unit/lib/testStatusService.exe -v2 -vs
$RUNNER_TEMP/release/test/unit.lib/testStatusService.exe -v2 -vs
echo './*/test/unit/lib/testStatusService.exe'
ls -l ./*/test/unit/lib/testStatusService.exe
./coverage/test/unit/lib/testStatusService.exe -v2 -vs
./release/test/unit/lib/testStatusService.exe -v2 -vs
working-directory: ${{ runner.temp }}
- name: Test w/ coverage # We can't execute arm64 binaries on an x86-64 host.
if: matrix.arch != 'arm64' && matrix.toolchain != 'msvc'
run: ctest --output-on-failure --test-dir "%RUNNER_TEMP%/coverage" --extra-verbose
Expand Down

0 comments on commit ed16574

Please sign in to comment.