From 875f13bfb5a077b7631d7310788238b7c2e4fe9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Mon, 15 Apr 2024 20:07:23 +0200 Subject: [PATCH] Update cmake to 2.29.2 to work around https://github.com/microsoft/vcpkg/issues/37968 --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e74f93c365fc5a..d2ac690bba58f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,6 +72,12 @@ jobs: run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT working-directory: ${{ matrix.vcpkg_path }} + # update cmake to 2.29.2 to work around https://github.com/microsoft/vcpkg/issues/37968 + - name: "[macOS] Set up cmake" + uses: jwlawson/actions-setup-cmake@v2.0 + with: + cmake-version: "3.29.2" + - name: Bootstrap vcpkg run: ${{ matrix.vcpkg_bootstrap }} working-directory: ${{ matrix.vcpkg_path }}