Skip to content

Commit

Permalink
Update build-tool.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardodoria authored Dec 7, 2024
1 parent d765227 commit e3a1fbc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,18 +101,24 @@ jobs:
if: ${{ startsWith(matrix.config.os, 'windows') }}
run: |
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
ninja --version
cmake --version
- name: Install dependencies
if: ${{ !startsWith(matrix.config.os, 'macos') }}
Expand Down

0 comments on commit e3a1fbc

Please sign in to comment.