Downgrade CMake on Windows Runners.

This commit is contained in:
Julian Groß 2025-04-05 13:02:17 +02:00
parent b38237cb8d
commit f6cc8bcc52
3 changed files with 12 additions and 6 deletions

View file

@ -158,10 +158,12 @@ jobs:
echo " done"
fi
- name: Override NSIS
- name: Override Windows package versions
shell: pwsh
if: startsWith(matrix.os, 'windows')
run: choco install nsis --allow-downgrade --version=3.06.1
run: |
choco install nsis --allow-downgrade --version=3.06.1
choco install cmake --allow-downgrade --version=3.31.6 # Our dependencies don't support CMake 4.0 yet.
- name: Install Python modules
if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macOS')

View file

@ -213,10 +213,12 @@ jobs:
fi
- name: Override NSIS
- name: Override Windows package versions
shell: pwsh
if: startsWith(matrix.os, 'Windows')
run: choco install nsis --allow-downgrade --version=3.06.1
run: |
choco install nsis --allow-downgrade --version=3.06.1
choco install cmake --allow-downgrade --version=3.31.6 # Our dependencies don't support CMake 4.0 yet.
- name: Install Python modules
if: startsWith(matrix.os, 'Windows') || startsWith(matrix.os, 'macOS')

View file

@ -83,10 +83,12 @@ jobs:
submodules: false
fetch-depth: 1
- name: Override NSIS
- name: Override Windows package versions
shell: pwsh
if: startsWith(matrix.os, 'windows')
run: choco install nsis --allow-downgrade --version=3.06.1
run: |
choco install nsis --allow-downgrade --version=3.06.1
choco install cmake --allow-downgrade --version=3.31.6 # Our dependencies don't support CMake 4.0 yet.
- name: Install Python modules
if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macOS')