Merge pull request #1396 from JulianGro/downgrade-cmake
Some checks are pending
Master API-docs CI Build and Deploy / Build and deploy API-docs (push) Waiting to run
Master Doxygen CI Build and Deploy / Build and deploy Doxygen documentation (push) Waiting to run

Downgrade CMake on Windows Runners.
This commit is contained in:
Julian Groß 2025-04-05 14:37:10 +02:00 committed by GitHub
commit 59373f97fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 6 deletions

View file

@ -158,10 +158,12 @@ jobs:
echo " done" echo " done"
fi fi
- name: Override NSIS - name: Override Windows package versions
shell: pwsh shell: pwsh
if: startsWith(matrix.os, 'windows') 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 - name: Install Python modules
if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macOS') if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macOS')

View file

@ -213,10 +213,12 @@ jobs:
fi fi
- name: Override NSIS - name: Override Windows package versions
shell: pwsh shell: pwsh
if: startsWith(matrix.os, 'Windows') 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 - name: Install Python modules
if: startsWith(matrix.os, 'Windows') || startsWith(matrix.os, 'macOS') if: startsWith(matrix.os, 'Windows') || startsWith(matrix.os, 'macOS')

View file

@ -83,10 +83,12 @@ jobs:
submodules: false submodules: false
fetch-depth: 1 fetch-depth: 1
- name: Override NSIS - name: Override Windows package versions
shell: pwsh shell: pwsh
if: startsWith(matrix.os, 'windows') 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 - name: Install Python modules
if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macOS') if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macOS')