Skip to content

Commit d9b46cd

Browse files
committed
Update CI builds to zlib 1.2.12
"Due to the bug fixes, any installations of 1.2.11 should be replaced with 1.2.12."
1 parent 570cd62 commit d9b46cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/testing.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ jobs:
7373
- name: Get zlib, libpng and bison
7474
run: | # TODO: use an array
7575
$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')
7777
$hash = (Get-FileHash "zlib.zip" -Algorithm SHA256).Hash
78-
if ($hash -ne 'd7510a8ee1918b7d0cad197a089c0a2cd4d6df05fee22389f67f115e738b178d') {
78+
if ($hash -ne '173e89893dcb8b4a150d7731cd72f0602f1d6b45e60e2a54efdf7f3fc3325fd7') {
7979
Write-Host "zlib SHA256 mismatch! ($hash)"
8080
exit 1
8181
}
@@ -93,7 +93,7 @@ jobs:
9393
Expand-Archive -DestinationPath . "zlib.zip"
9494
Expand-Archive -DestinationPath . "libpng.zip"
9595
Expand-Archive -DestinationPath install_dir "winflexbison.zip"
96-
Move-Item zlib-1.2.11 zlib
96+
Move-Item zlib-1.2.12 zlib
9797
Move-Item lpng1637 libpng
9898
- name: Build zlib
9999
run: | # BUILD_SHARED_LIBS causes the output DLL to be correctly called `zlib1.dll`

0 commit comments

Comments
 (0)