Add sudo apt-get install -y libegl1-mesa-dev

This commit is contained in:
Cadene 2024-03-12 14:30:28 +00:00
parent 5881eec376
commit 2c5d49cad5
1 changed files with 3 additions and 0 deletions

View File

@ -99,6 +99,9 @@ jobs:
path: .venv path: .venv
key: venv-${{ steps.setup-python.outputs.python-version }}-${{ env.POETRY_VERSION }}-${{ hashFiles('**/poetry.lock') }} key: venv-${{ steps.setup-python.outputs.python-version }}-${{ env.POETRY_VERSION }}-${{ hashFiles('**/poetry.lock') }}
- name: Install libegl1-mesa-dev (to use MUJOCO_GL=egl)
run: sudo apt-get update && sudo apt-get install -y libegl1-mesa-dev
#---------------------------------------------- #----------------------------------------------
# install project # install project
#---------------------------------------------- #----------------------------------------------