macos brew

This commit is contained in:
Quentin Gallouédec
2024-04-29 10:34:19 +02:00
parent 0f7552c3d4
commit b11905b168

View File

@@ -25,7 +25,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest, macos-latest-large]
os: [ubuntu-latest, macos-latest, macos-latest-large]
env:
DATA_DIR: tests/data
MUJOCO_GL: egl
@@ -38,7 +38,12 @@ jobs:
- uses: actions/checkout@v4
- name: Install EGL
run: sudo apt-get update && sudo apt-get install -y libegl1-mesa-dev
run: |
if [[ "${{ matrix.os }}" == 'ubuntu-latest' ]]; then
sudo apt-get update && sudo apt-get install -y libegl1-mesa-dev
elif [[ "${{ matrix.os }}" == 'macos-latest' || "${{ matrix.os }}" == 'macos-latest-large' ]]; then
brew install mesa
fi
- name: Install poetry
run: |