From bd5098d2fe8922e4e963fd7bdb813355aed13f26 Mon Sep 17 00:00:00 2001 From: thexai <58434170+thexai@users.noreply.github.com> Date: Sun, 31 Mar 2024 21:45:21 +0200 Subject: [PATCH] Force use CMake 3.28.3 --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 33a3a3b..87d30cd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,6 +30,10 @@ jobs: # Perl included with git does not work when building openssl run: choco install -y StrawberryPerl nasm + - name: Install CMake v3.28.3 + # libbluray fails to build with CMake 3.29.0 + run: choco install -y CMake --version 3.28.3 --force + - name: Build # Build your program with the given configuration run: .\DoRelease.ps1 -Platforms ${{ matrix.arch }} ${{ matrix.platform }} -VsVersion ${{ env.VS_VERSION }} -SdkVersion "${{ env.SDK_VERSION }}"