Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Add missing Linux dependencies on Linux
Browse files Browse the repository at this point in the history
- Some tests were failing without them.
- Also, add code to enable remote SSH connection to all workflows and
rename them for clarity.
ccordoba12 committed Aug 12, 2024
1 parent 85be11e commit 57daa10
Showing 4 changed files with 19 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/linux-pip-tests.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ concurrency:

jobs:
linux:
name: Py${{ matrix.PYTHON_VERSION }}
name: Linux (pip) - Py${{ matrix.PYTHON_VERSION }}
runs-on: ubuntu-latest
env:
CI: True
@@ -34,7 +34,7 @@ jobs:
- name: Install System Packages
run: |
sudo apt-get update
sudo apt-get install libegl1-mesa
sudo apt-get install libegl1-mesa libopengl0
- name: Install Conda
uses: conda-incubator/setup-miniconda@v2
with:
@@ -46,11 +46,15 @@ jobs:
shell: bash -l {0}
run: |
pip install -e .[test]
pip install pyside6
- name: Show environment information
shell: bash -l {0}
run: |
conda info
conda list
# - name: Setup Remote SSH Connection
# uses: mxschmitt/action-tmate@v3
# timeout-minutes: 60
- name: Run tests
shell: bash -l {0}
run: |
7 changes: 5 additions & 2 deletions .github/workflows/linux-tests.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ concurrency:

jobs:
linux:
name: Py${{ matrix.PYTHON_VERSION }}
name: Linux - Py${{ matrix.PYTHON_VERSION }}
runs-on: ubuntu-latest
env:
CI: True
@@ -34,7 +34,7 @@ jobs:
- name: Install System Packages
run: |
sudo apt-get update
sudo apt-get install libegl1-mesa
sudo apt-get install libegl1-mesa libopengl0
- name: Install Conda
uses: conda-incubator/setup-miniconda@v2
with:
@@ -59,6 +59,9 @@ jobs:
run: |
conda info
conda list
# - name: Setup Remote SSH Connection
# uses: mxschmitt/action-tmate@v3
# timeout-minutes: 60
- name: Run tests
shell: bash -l {0}
run: |
5 changes: 4 additions & 1 deletion .github/workflows/macos-tests.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ concurrency:

jobs:
macos:
name: Py${{ matrix.PYTHON_VERSION }}
name: macOS - Py${{ matrix.PYTHON_VERSION }}
runs-on: macos-latest
env:
CI: True
@@ -55,6 +55,9 @@ jobs:
run: |
conda info
conda list
# - name: Setup Remote SSH Connection
# uses: mxschmitt/action-tmate@v3
# timeout-minutes: 60
- name: Run tests
shell: bash -l {0}
run: |
5 changes: 4 additions & 1 deletion .github/workflows/windows-tests.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ concurrency:

jobs:
windows:
name: Py${{ matrix.PYTHON_VERSION }}
name: Windows - Py${{ matrix.PYTHON_VERSION }}
runs-on: windows-latest
env:
CI: True
@@ -55,6 +55,9 @@ jobs:
run: |
conda info
conda list
# - name: Setup Remote SSH Connection
# uses: mxschmitt/action-tmate@v3
# timeout-minutes: 60
- name: Run tests
shell: bash -l {0}
run: |

0 comments on commit 57daa10

Please sign in to comment.