From c787e14a69e4ced3da2d8f2e661b9a50e8911b55 Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Fri, 11 Jul 2025 00:08:53 +0800 Subject: [PATCH] chore(CI): bump exiv2 version for msvc build --- .github/workflows/windows.yml | 6 +++--- appveyor.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 7e4b595..6637fe6 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -72,9 +72,9 @@ jobs: set CMAKE_PREFIX_PATH=%PWD%/dependencies_bin mkdir dependencies_src echo ::group::===== exiv2 ===== - curl -fsSL -o exiv2_bin.zip https://github.com/Exiv2/exiv2/releases/download/v0.28.3/exiv2-0.28.3-2019msvc64.zip + curl -fsSL -o exiv2_bin.zip https://github.com/Exiv2/exiv2/releases/download/v0.28.5/exiv2-0.28.5-2022msvc-AMD64.zip 7z x exiv2_bin.zip -y - ren .\exiv2-0.28.3-2019msvc64 dependencies_bin + ren .\exiv2-0.28.5-2022msvc-AMD64 dependencies_bin echo ::endgroup:: echo ::group::===== zlib ===== curl -fsSL -o zlib_src.zip https://zlib.net/zlib131.zip @@ -109,7 +109,7 @@ jobs: echo ::endgroup:: echo ::group::===== KArchive ===== git clone -q https://invent.kde.org/frameworks/karchive.git dependencies_src/karchive - cmake .\dependencies_src\karchive -Bbuild_dependencies/karchive -DWITH_LIBZSTD=OFF -DWITH_BZIP2=OFF -DWITH_LIBLZMA=OFF -DCMAKE_INSTALL_PREFIX="dependencies_bin" || goto :error + cmake .\dependencies_src\karchive -Bbuild_dependencies/karchive -DBUILD_TESTING=OFF -DWITH_LIBZSTD=OFF -DWITH_BZIP2=OFF -DWITH_LIBLZMA=OFF -DCMAKE_INSTALL_PREFIX="dependencies_bin" || goto :error cmake --build build_dependencies/karchive --config Release --target=install || goto :error echo ::endgroup:: echo ::group::===== KImageFormats ===== diff --git a/appveyor.yml b/appveyor.yml index 126e3fb..78ad606 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -90,7 +90,7 @@ build_script: - cd karchive - mkdir build - cd build - - cmake .. -G "Ninja" -DWITH_LIBZSTD=OFF -DWITH_BZIP2=OFF -DWITH_LIBLZMA=OFF -DWITH_OPENSSL=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% + - cmake .. -G "Ninja" -DBUILD_TESTING=OFF -DWITH_LIBZSTD=OFF -DWITH_BZIP2=OFF -DWITH_LIBLZMA=OFF -DWITH_OPENSSL=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% - cmake --build . --config Release - cmake --build . --config Release --target install/strip - cd %APPVEYOR_BUILD_FOLDER%