Skip to content

Commit

Permalink
further opengl installing in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenDoornbos committed Oct 3, 2024
1 parent 4e173cc commit 9af9baf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgl1-mesa-glx libglfw3
sudo apt-get install -y libgl1-mesa-glx libglfw3 libglu1-mesa-dev freeglut3-dev mesa-utils
- name: Verify OpenGL installation
run: |
glxinfo | grep "OpenGL"
- name: Install Poetry
run: |
Expand All @@ -32,7 +36,7 @@ jobs:
run: |
poetry install --with dev
- name: Install OpenGL and glfw Python dependencies
- name: Install OpenGL and GLFW Python dependencies
run: |
poetry run pip install PyOpenGL glfw
Expand Down

0 comments on commit 9af9baf

Please sign in to comment.