Skip to content

Commit 1054f5c

Browse files
authored
Pin cmake on Windows builds to 3.31.1 as the new patch release is failing to install properly on GH Actions (#415)
Signed-off-by: Adam Glustein <adam.glustein@point72.com>
1 parent 19bcd06 commit 1054f5c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,10 @@ dependencies-fedora: ## install dependencies for linux
203203
dependencies-vcpkg: ## install dependencies via vcpkg
204204
cd vcpkg && ./bootstrap-vcpkg.sh && ./vcpkg install
205205

206+
## TODO remove pin on cmake below once we identify why 3.31.2 is failing OR cmake releases a new version which installs properly
206207
dependencies-win: ## install dependencies via windows
207-
choco install cmake curl winflexbison ninja unzip zip --no-progress -y
208+
choco install cmake --version=3.31.1
209+
choco install curl winflexbison ninja unzip zip --no-progress -y
208210

209211
############################################################################################
210212
# Thanks to Francoise at marmelab.com for this

0 commit comments

Comments
 (0)