Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Don't install unnecessary dependancies for raylib & gtk #77

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@ jobs:
# sudo apt-get install -y libc6-dev libgl1-mesa-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev libasound2-dev pkg-config

# raylib: https://github.com/gen2brain/raylib-go/blob/master/.github/workflows/build.yml
sudo apt-get install -y libxi-dev libxinerama-dev libxcursor-dev libxrandr-dev libgl1-mesa-dev
# sudo apt-get install -y libxi-dev libxinerama-dev libxcursor-dev libxrandr-dev libgl1-mesa-dev

# gtk: https://github.com/gotk3/gotk3/blob/master/.github/workflows/linux.yml
sudo apt-get install -y libgtk-3-dev libcairo2-dev libglib2.0-dev
# sudo apt-get install -y libgtk-3-dev libcairo2-dev libglib2.0-dev

- name: Install MacOS cgo dependancies
if: runner.os == 'macOS'
run: |
# b_gtk: https://github.com/gotk3/gotk3/blob/master/.github/workflows/macos.yml
brew install gobject-introspection gtk+3
# brew install gobject-introspection gtk+3

- name: Build
# Enable all features for CI builds.
Expand Down