Skip to content

Commit

Permalink
Use libglu1-mesa-dev instead of freeglut on linux build actions
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamboree committed Dec 28, 2024
1 parent d2d8197 commit c023e85
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 freeglut3-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 freeglut3-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 freeglut3-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 c023e85

Please sign in to comment.