From be9a47781826575bfc11cf5ea9fd892176ba986e Mon Sep 17 00:00:00 2001 From: Julien Jerphanion Date: Fri, 12 Apr 2024 19:48:37 +0200 Subject: [PATCH 1/2] ci: Try using cmake 3.29.2 from jwlawson/actions-setup-cmake@v2 See: https://github.com/actions/runner-images/issues/9680#issuecomment-2051917949i Signed-off-by: Julien Jerphanion --- .github/workflows/build_steps.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build_steps.yml b/.github/workflows/build_steps.yml index 8e39400c37..2361f5fb21 100644 --- a/.github/workflows/build_steps.yml +++ b/.github/workflows/build_steps.yml @@ -73,6 +73,13 @@ jobs: with: submodules: recursive # Just in case a dep has its own third-party deps + # See: https://github.com/actions/runner-images/issues/9680#issuecomment-2051917949 + - name: HOTFIX: Setup CMake 3.29.2 + if: matrix.os == 'windows' + uses: jwlawson/actions-setup-cmake@v2 + with: + cmake-version: '3.29.2' + - name: Configure sccache uses: mozilla-actions/sccache-action@v0.0.3 with: From 3d60d0140395616e048605ee14fd26819a68f950 Mon Sep 17 00:00:00 2001 From: Julien Jerphanion Date: Fri, 12 Apr 2024 19:57:34 +0200 Subject: [PATCH 2/2] Fix syntax error Signed-off-by: Julien Jerphanion Co-authored-by: Muhammad Hamza Sajjad --- .github/workflows/build_steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_steps.yml b/.github/workflows/build_steps.yml index 2361f5fb21..44e05087e1 100644 --- a/.github/workflows/build_steps.yml +++ b/.github/workflows/build_steps.yml @@ -74,7 +74,7 @@ jobs: submodules: recursive # Just in case a dep has its own third-party deps # See: https://github.com/actions/runner-images/issues/9680#issuecomment-2051917949 - - name: HOTFIX: Setup CMake 3.29.2 + - name: HOTFIX Setup CMake 3.29.2 if: matrix.os == 'windows' uses: jwlawson/actions-setup-cmake@v2 with: