Skip to content

Commit

Permalink
Install libglu1-mesa-dev as a linux build dependency in Github Actions
Browse files Browse the repository at this point in the history
Because something changed and now we're getting errors about not being able to find glu.h
  • Loading branch information
grahamboree committed Dec 28, 2024
1 parent 8c8df48 commit ac4376d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
- name: Install opengl and SDL
run: |
sudo apt-get update
sudo apt-get install -y libgl1-mesa-dev libsdl2-dev
sudo apt-get install -y libgl1-mesa-dev libglu1-mesa-dev libsdl2-dev
- name: Download & Install premake
working-directory: RecastDemo
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
- name: Install opengl and SDL
run: |
sudo apt-get update
sudo apt-get install -y libgl1-mesa-dev libsdl2-dev
sudo apt-get install -y libgl1-mesa-dev libglu1-mesa-dev libsdl2-dev
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.conf}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Install opengl and SDL
run: |
sudo apt-get update
sudo apt-get install -y libgl1-mesa-dev libsdl2-dev
sudo apt-get install -y libgl1-mesa-dev libglu1-mesa-dev libsdl2-dev
- name: Download & Install premake
working-directory: RecastDemo
Expand Down

0 comments on commit ac4376d

Please sign in to comment.