Skip to content

Commit b4e54cc

Browse files
authored
Update main.yml
1 parent a0ca092 commit b4e54cc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@ jobs:
2121
shell: pwsh
2222
run: |
2323
set TOOLCHAIN=""
24-
make
24+
cd $env:GITHUB_WORKSPACE
25+
exec {make.bat}
2526
2627
- name: Test
2728
shell: pwsh
2829
run: |
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
30+
$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 }
3132

0 commit comments

Comments
 (0)