Skip to content

Commit

Permalink
fix autobuild
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsiomb committed May 30, 2024
1 parent 448660b commit b384678
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: vmactions/freebsd-vm@v1
with:
prepare: |
pkg install -y gmake libX11 mesa-libs
pkg install -y gmake libX11 mesa-libs libglvnd libGLU
run: |
./configure
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build_gnulinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install libx11-dev libgl1-mesa-dev libglu1-mesa-dev
- name: configure
run: ./configure --disable-x11

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/build_macosx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- name: install dependencies
run: |
brew install libx11 mesa
brew install libx11 mesa mesa-glu
- name: configure
run: ./configure
Expand Down Expand Up @@ -47,6 +47,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: install dependencies
run: |
brew install libx11 mesa mesa-glu
- name: configure
run: ./configure --disable-x11

Expand Down

0 comments on commit b384678

Please sign in to comment.