Skip to content

Commit eae2ab8

Browse files
author
Snowy
committed
CI: Speed up windows thirdparty extraction
1 parent 10c21ab commit eae2ab8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
run: |
1313
$wc = New-Object System.Net.WebClient
1414
$wc.DownloadFile("https://www.panda3d.org/download/panda3d-1.10.14/panda3d-1.10.14-tools-win64.zip", "thirdparty-tools.zip")
15-
Expand-Archive -Path thirdparty-tools.zip
15+
Add-Type -Assembly "System.IO.Compression.Filesystem"
16+
[System.IO.Compression.ZipFile]::ExtractToDirectory("thirdparty-tools.zip", "thirdparty-tools")
1617
Move-Item -Path thirdparty-tools/panda3d-1.10.14/thirdparty -Destination .
1718
1819
- name: Build Panda

0 commit comments

Comments
 (0)