From b8a1415ff0670c4c3578abddf51ead9296842b18 Mon Sep 17 00:00:00 2001 From: Sebastien Jourdain Date: Mon, 16 Dec 2024 14:09:03 -0700 Subject: [PATCH] ci(osmesa): install osmesa for vtk --- .github/workflows/test_and_release.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test_and_release.yml b/.github/workflows/test_and_release.yml index dad47af..9363cb5 100644 --- a/.github/workflows/test_and_release.yml +++ b/.github/workflows/test_and_release.yml @@ -34,14 +34,14 @@ jobs: name: "Linux", os: ubuntu-latest } - - { - name: "MacOSX", - os: macos-latest - } - - { - name: "Windows", - os: windows-latest - } + # - { + # name: "MacOSX", + # os: macos-latest + # } + # - { + # name: "Windows", + # os: windows-latest + # } defaults: run: @@ -55,7 +55,11 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - + + - name: Install OSMesa for Linux + if: matrix.config.os == 'ubuntu-latest' + run: sudo apt-get install -y libosmesa6-dev + - name: Install dependencies run: | pip install .[vtk]