From 5b6620a904f251f381688bf3903a9c98ef823ce4 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 22 Jun 2022 16:08:16 +0200 Subject: [PATCH] =?UTF-8?q?[DO=C2=A0NOT=20MERGE]=20Make=20appveyor=20use?= =?UTF-8?q?=20the=20correct=20dependencies=20versions.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- appveyor/install_kiwix-desktop.cmd | 1 + appveyor/install_libkiwix.cmd | 1 + appveyor/install_libzim.cmd | 1 + 3 files changed, 3 insertions(+) diff --git a/appveyor/install_kiwix-desktop.cmd b/appveyor/install_kiwix-desktop.cmd index 0d1ee6d..8603f52 100644 --- a/appveyor/install_kiwix-desktop.cmd +++ b/appveyor/install_kiwix-desktop.cmd @@ -2,6 +2,7 @@ REM ======================================================== REM Install kiwix-desktop git clone https://github.com/kiwix/kiwix-desktop || exit /b 1 cd kiwix-desktop +git checkout 2.3.0 || exit /b 1 echo "Running qmake" SET _WITH_CONSOLE=1 IF %KIWIX_DESKTOP_RELEASE% EQU 1 ( diff --git a/appveyor/install_libkiwix.cmd b/appveyor/install_libkiwix.cmd index dc357e7..d17d446 100644 --- a/appveyor/install_libkiwix.cmd +++ b/appveyor/install_libkiwix.cmd @@ -2,6 +2,7 @@ REM ======================================================== REM Install libkiwix git clone https://github.com/kiwix/libkiwix.git || exit /b 1 cd libkiwix +git checkout 11.0.0 || exit /b 1 set CPPFLAGS="-I%EXTRA_DIR%/include" meson . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1 cd build diff --git a/appveyor/install_libzim.cmd b/appveyor/install_libzim.cmd index 18e42d6..725b4f3 100644 --- a/appveyor/install_libzim.cmd +++ b/appveyor/install_libzim.cmd @@ -2,6 +2,7 @@ REM ======================================================== REM Install libzim git clone https://github.com/openzim/libzim.git || exit /b 1 cd libzim +git checkout 8.0.0 || exit /b 1 meson . build --prefix %EXTRA_DIR% --default-library static --buildtype release || exit /b 1 cd build ninja || exit /b 1