macos brew
This commit is contained in:
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest, macos-latest-large]
|
os: [ubuntu-latest, macos-latest, macos-latest-large]
|
||||||
env:
|
env:
|
||||||
DATA_DIR: tests/data
|
DATA_DIR: tests/data
|
||||||
MUJOCO_GL: egl
|
MUJOCO_GL: egl
|
||||||
@@ -38,7 +38,12 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install EGL
|
- 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
|
- name: Install poetry
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user