Skip to content

Commit

Permalink
CI: Add missing system dependency on Linux
Browse files Browse the repository at this point in the history
- Some tests were failing without it.
- Also, add code to enable remote SSH connection to all workflows and
rename them for clarity.
  • Loading branch information
ccordoba12 committed Aug 13, 2024
1 parent d05a433 commit 9388327
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/linux-pip-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -51,6 +51,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: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/linux-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/macos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/windows-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit 9388327

Please sign in to comment.