Skip to content

Commit cd4ac63

Browse files
committed
Fix windows tmp for github workflows
1 parent 933e9fa commit cd4ac63

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/test_runner.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
run: >-
1717
docker run --rm -v ${GITHUB_WORKSPACE}:/build -w /build
1818
arbmind/qbs-clang10:qbs_v1.16.0
19-
build -d /tmp/build -p autotest-runner
19+
build
20+
--build-directory /tmp/build
21+
-p autotest-runner
2022
2123
windows-qbs:
2224
name: "Build and run tests on Windows"
@@ -32,4 +34,7 @@ jobs:
3234
run: third_party/git_clone_googletest.sh
3335
shell: bash
3436

35-
- run: qbs build profile:MSVC2019-x64 -d %TMP%\build -p autotest-runner
37+
- run: >-
38+
qbs build profile:MSVC2019-x64
39+
--build-directory ${env:RUNNER_TEMP}\build
40+
-p autotest-runner

0 commit comments

Comments
 (0)