Skip to content

Commit

Permalink
Merge pull request #608 from languitar/bugfix/ci
Browse files Browse the repository at this point in the history
ci: fix build after Ubuntu 24.04 transition
  • Loading branch information
languitar authored Jan 12, 2025
2 parents a340441 + 6f3c88c commit 8837fe8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: install cairo
run: sudo apt-get update && sudo apt-get install -y libcairo2-dev
- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand All @@ -28,7 +30,7 @@ jobs:
with:
python-version: "3.12"
- name: Install native dependencies
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository1.0-dev
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository1.0-dev libcairo2-dev
- name: Cache Python packages
uses: actions/cache@v4
with:
Expand All @@ -52,7 +54,7 @@ jobs:
with:
python-version: "3.12"
- name: Install native dependencies
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository1.0-dev plantuml
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository1.0-dev plantuml libcairo2-dev
- name: Cache Python packages
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -103,7 +105,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install native dependencies
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository1.0-dev
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository1.0-dev libcairo2-dev
- name: Cache Python packages
uses: actions/cache@v4
with:
Expand Down

0 comments on commit 8837fe8

Please sign in to comment.