File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 73
73
- name : Get zlib, libpng and bison
74
74
run : | # TODO: use an array
75
75
$wc = New-Object System.Net.WebClient
76
- $wc.DownloadFile('https://www.zlib.net/zlib1211 .zip', 'zlib.zip')
76
+ $wc.DownloadFile('https://www.zlib.net/zlib1212 .zip', 'zlib.zip')
77
77
$hash = (Get-FileHash "zlib.zip" -Algorithm SHA256).Hash
78
- if ($hash -ne 'd7510a8ee1918b7d0cad197a089c0a2cd4d6df05fee22389f67f115e738b178d ') {
78
+ if ($hash -ne '173e89893dcb8b4a150d7731cd72f0602f1d6b45e60e2a54efdf7f3fc3325fd7 ') {
79
79
Write-Host "zlib SHA256 mismatch! ($hash)"
80
80
exit 1
81
81
}
93
93
Expand-Archive -DestinationPath . "zlib.zip"
94
94
Expand-Archive -DestinationPath . "libpng.zip"
95
95
Expand-Archive -DestinationPath install_dir "winflexbison.zip"
96
- Move-Item zlib-1.2.11 zlib
96
+ Move-Item zlib-1.2.12 zlib
97
97
Move-Item lpng1637 libpng
98
98
- name : Build zlib
99
99
run : | # BUILD_SHARED_LIBS causes the output DLL to be correctly called `zlib1.dll`
You can’t perform that action at this time.
0 commit comments