Install newer CMake due to regression in 3.29.1 causing issues
This commit is contained in:
parent
d3382e2b91
commit
c40e17388a
8
.github/workflows/build_linux.yml
vendored
8
.github/workflows/build_linux.yml
vendored
@ -20,8 +20,12 @@ jobs:
|
|||||||
- name: Install Packages
|
- name: Install Packages
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y pkg-config ninja-build \
|
sudo apt-get install -y pkg-config libxmu-dev libxi-dev libgl-dev libglu1-mesa-dev libsdl2-dev
|
||||||
libxmu-dev libxi-dev libgl-dev libglu1-mesa-dev libsdl2-dev
|
|
||||||
|
- name: Install CMake & Ninja
|
||||||
|
uses: lukka/get-cmake@latest
|
||||||
|
with:
|
||||||
|
cmakeVersion: 3.29.2
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
6
.github/workflows/build_macos.yml
vendored
6
.github/workflows/build_macos.yml
vendored
@ -21,8 +21,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: 'recursive'
|
submodules: 'recursive'
|
||||||
|
|
||||||
- name: Hire a Ninja
|
- name: Install CMake & Ninja
|
||||||
run: brew install ninja
|
uses: lukka/get-cmake@latest
|
||||||
|
with:
|
||||||
|
cmakeVersion: 3.29.2
|
||||||
|
|
||||||
- name: sccache
|
- name: sccache
|
||||||
uses: hendrikmuhs/ccache-action@v1.2
|
uses: hendrikmuhs/ccache-action@v1.2
|
||||||
|
8
.github/workflows/build_windows.yml
vendored
8
.github/workflows/build_windows.yml
vendored
@ -22,10 +22,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: 'recursive'
|
submodules: 'recursive'
|
||||||
|
|
||||||
- name: Hire a Ninja
|
- name: Install CMake & Ninja
|
||||||
run: |
|
uses: lukka/get-cmake@latest
|
||||||
choco install ninja
|
with:
|
||||||
ninja.exe --version
|
cmakeVersion: 3.29.2
|
||||||
|
|
||||||
- name: sccache
|
- name: sccache
|
||||||
uses: hendrikmuhs/ccache-action@v1.2
|
uses: hendrikmuhs/ccache-action@v1.2
|
||||||
|
Loading…
Reference in New Issue
Block a user