We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0ca092 commit b4e54ccCopy full SHA for b4e54cc
.github/workflows/main.yml
@@ -21,11 +21,12 @@ jobs:
21
shell: pwsh
22
run: |
23
set TOOLCHAIN=""
24
- make
+ cd $env:GITHUB_WORKSPACE
25
+ exec {make.bat}
26
27
- name: Test
28
29
- cp build\x64-windows\source\pdal\release\pdalc.dll build\x64-windows\tests\pdal\release\
30
- build\x64-windows\tests\pdal\release\test_pdalc.exe
+ $env:PATH="$env:GITHUB_WORKSPACE\build\x64-windows\source\pdal\release\;$env:GITHUB_WORKSPACE\build\x64-windows\tests\pdal\release;$env:PATH"
31
+ exec { test_pdalc.exe }
32
0 commit comments