Skip to content

Commit d8e18d2

Browse files
committed
🔨 Add ninja build system to github actions
1 parent c71c2de commit d8e18d2

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/cmake-multi-platform.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,17 @@ jobs:
3333
if: runner.os == 'Linux'
3434
run: |
3535
sudo apt-get update
36-
sudo apt-get install -y libegl1-mesa-dev libgl1-mesa-dev
36+
sudo apt-get install -y libegl1-mesa-dev libgl1-mesa-dev ninja-build
37+
38+
- name: Install System Dependencies (Windows)
39+
if: runner.os == 'Windows'
40+
run: |
41+
choco install ninja
3742
3843
- name: Install Dependencies
3944
run: |
4045
python -m pip install --upgrade pip
41-
pip install conan cmake ninja
46+
pip install conan cmake
4247
4348
- name: Setup Conan
4449
shell: bash

0 commit comments

Comments
 (0)