-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install mesa OpenGL driver on Ubuntu
- Loading branch information
1 parent
b404fd8
commit 65e9ca1
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,14 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install mesa (software only) OpenGL driver | ||
if: contains(matrix.os, 'ubuntu') | ||
shell: bash | ||
run: | | ||
sudo apt-get update | ||
# See https://github.com/robotology/gz-sim-yarp-plugins/pull/214#issuecomment-2387088665 | ||
sudo apt install libegl-mesa0 libgl1-mesa-dri | ||
- name: Set up pixi | ||
uses: prefix-dev/[email protected] | ||
with: | ||
|