mirror of
https://github.com/overte-org/overte.git
synced 2025-04-11 13:42:38 +02:00
Merge pull request #1396 from JulianGro/downgrade-cmake
Downgrade CMake on Windows Runners.
This commit is contained in:
commit
59373f97fd
3 changed files with 12 additions and 6 deletions
6
.github/workflows/master_build.yml
vendored
6
.github/workflows/master_build.yml
vendored
|
@ -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')
|
||||
|
|
6
.github/workflows/pr_build.yml
vendored
6
.github/workflows/pr_build.yml
vendored
|
@ -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')
|
||||
|
|
6
.github/workflows/release_build.yml
vendored
6
.github/workflows/release_build.yml
vendored
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue