Skip to content

Commit

Permalink
fix: adding dependency install for Ubuntu-based machines
Browse files Browse the repository at this point in the history
  • Loading branch information
abanuelo committed Jun 25, 2024
1 parent ef3f6a0 commit 97ec7b6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/run-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ jobs:
- name: Update pip
run: |
python -m pip install --upgrade pip
- name: Install Dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev libfreetype6-dev libportmidi-dev libjpeg-dev libpng-dev
- name: Install Scenic and dependencies
run: |
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ jobs:
- name: Update pip
run: |
python -m pip install --upgrade pip
- name: Install Dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev libfreetype6-dev libportmidi-dev libjpeg-dev libpng-dev
- name: Install Scenic and dependencies
run: |
Expand Down

0 comments on commit 97ec7b6

Please sign in to comment.