Skip to content

Commit 64cfa6c

Browse files
committed
Don't hardcode the temp path
The drive letter differs between Window 2022 and 2025 runners.
1 parent be3ff4b commit 64cfa6c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414

1515
jobs:
1616
linux:
17+
if: false
1718
runs-on: ubuntu-${{ matrix.os }}${{ matrix.arch == 'arm64' && '-arm' || '' }}
1819
strategy:
1920
fail-fast: false
@@ -219,6 +220,7 @@ jobs:
219220
if-no-files-found: error
220221

221222
mac:
223+
if: false
222224
runs-on: ${{ matrix.os }}
223225
env:
224226
CMAKE_BUILD_PARALLEL_LEVEL: ${{ matrix.os == 'macos-13' && 4 || 3 }}
@@ -706,7 +708,7 @@ jobs:
706708
- name: Test StatusService for LLVM debugging
707709
if: matrix.toolchain == 'llvm'
708710
shell: bash
709-
run: /d/a/_temp/coverage/test/unit/lib/testStatusService.exe -o output,txt || :; cat output
711+
run: "${RUNNER_TEMP}/coverage/test/unit/lib/testStatusService.exe" -o output,txt || :; cat output
710712
- name: Test w/ coverage # We can't execute arm64 binaries on an x86-64 host.
711713
if: matrix.arch != 'arm64' && matrix.toolchain != 'msvc'
712714
run: ctest --output-on-failure --test-dir "%RUNNER_TEMP%/coverage" --verbose

0 commit comments

Comments
 (0)