Skip to content

Commit

Permalink
Fixed Github workflow dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardodoria committed Dec 7, 2024
1 parent 2830e7a commit 636659b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/build-tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,23 +100,25 @@ jobs:
- name: Install dependencies on Windows
if: ${{ startsWith(matrix.config.os, 'windows') }}
run: |
choco install cmake
choco install ninja cmake
ninja --version
cmake --version
- name: Install dependencies on Ubuntu
if: ${{ startsWith(matrix.config.os, 'ubuntu') }}
run: |
sudo apt-get update
sudo apt-get install libglfw3-dev libxi-dev libxcursor-dev libgl1-mesa-dev ninja-build cmake
ninja --version
cmake --version
- name: Install dependencies on macOS
if: ${{ startsWith(matrix.config.os, 'macos') }}
run: |
brew install cmake ninja
brew install ninja cmake
pip3 install --upgrade --break-system-packages click
- name: Install dependencies
if: ${{ !startsWith(matrix.config.os, 'macos') }}
run: pip3 install --upgrade click
ninja --version
cmake --version
- name: Build
run: |
Expand Down

0 comments on commit 636659b

Please sign in to comment.