From cd284f8b5864318d190580d8b220ce2697314df6 Mon Sep 17 00:00:00 2001 From: Adam Glustein Date: Tue, 10 Dec 2024 13:54:16 -0500 Subject: [PATCH] Pin cmake on Windows builds to 3.31.1 as the new patch release is failing to install properly on GH Actions Signed-off-by: Adam Glustein --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 32827d4eb..7f28c101a 100644 --- a/Makefile +++ b/Makefile @@ -203,8 +203,10 @@ dependencies-fedora: ## install dependencies for linux dependencies-vcpkg: ## install dependencies via vcpkg cd vcpkg && ./bootstrap-vcpkg.sh && ./vcpkg install +## TODO remove pin on cmake below once we identify why 3.31.2 is failing OR cmake releases a new version which installs properly dependencies-win: ## install dependencies via windows - choco install cmake curl winflexbison ninja unzip zip --no-progress -y + choco install cmake --version=3.31.1 + choco install curl winflexbison ninja unzip zip --no-progress -y ############################################################################################ # Thanks to Francoise at marmelab.com for this