Skip to content

Commit

Permalink
Install system packages on runner before setting up python environment
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenain committed Jan 21, 2025
1 parent edc98ef commit a4e7cc5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,17 @@ jobs:
shell: bash -leo pipefail {0}

steps:
- name: Install dependencies for Qt 5 on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install freeglut3-dev
- name: Install dependencies for Qt 5 on macOS
if: matrix.os == 'macos-14'
run: |
brew install freeglut
- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down Expand Up @@ -109,17 +120,6 @@ jobs:
# start xvfb in the background
sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x1024x24 &
- name: Install dependencies for Qt 5 on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install freeglut3-dev
- name: Install dependencies for Qt 5 on macOS
if: matrix.os == 'macos-14'
run: |
brew install freeglut
- name: Install dependencies
env:
CTAPIPE_VERSION: ${{ matrix.ctapipe-version }}
Expand Down

0 comments on commit a4e7cc5

Please sign in to comment.