From 15200c6fe7733f71a6cf52fbc1e4d94150f9f168 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zdenko=20Podobn=C3=BD?= Date: Thu, 4 Aug 2022 15:46:27 +0200 Subject: [PATCH] GA cmake-win64: use webp v1.2.3 as new code requires libsharpyuv --- .github/workflows/cmake-win64.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake-win64.yml b/.github/workflows/cmake-win64.yml index f9561da7a6..3c547f05b1 100644 --- a/.github/workflows/cmake-win64.yml +++ b/.github/workflows/cmake-win64.yml @@ -68,7 +68,7 @@ jobs: - name: Build and Install webp shell: cmd run: | - git clone --depth 1 https://github.com/webmproject/libwebp.git + git -c advice.detachedHead=false clone --branch v1.2.3 --depth 1 https://github.com/webmproject/libwebp.git cd libwebp cmake -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=${{env.ILOC}} -DCMAKE_INSTALL_PREFIX=${{env.ILOC}} -DWEBP_BUILD_ANIM_UTILS=OFF -DWEBP_BUILD_CWEBP=OFF -DWEBP_BUILD_DWEBP=OFF -DWEBP_BUILD_GIF2WEBP=OFF -DWEBP_BUILD_IMG2WEBP=OFF -DWEBP_BUILD_VWEBP=OFF -DWEBP_BUILD_WEBPMUX=OFF -DWEBP_BUILD_WEBPINFO=OFF -DWEBP_BUILD_EXTRAS=OFF cmake --build build --config Release --target install