From 116d24087ac2de81527a9cb757f6869cb55f8f7d Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Tue, 22 Aug 2023 20:34:33 +0800 Subject: [PATCH] CI(Windows): updated to use zlib 1.3 --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 6fc627c..91c23fe 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -47,9 +47,9 @@ build_script: - cd %APPVEYOR_BUILD_FOLDER% # download and install zlib for KArchive - cd %LIBZ% - - curl -fsSL -o zlib1213.zip https://zlib.net/zlib1213.zip - - 7z x zlib1213.zip -y - - cd zlib-1.2.13 + - curl -fsSL -o zlib13.zip https://zlib.net/zlib13.zip + - 7z x zlib13.zip -y + - cd zlib-1.3 - mkdir build - cd build - cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX%