Skip to content

Commit

Permalink
github actions: fix installation after move to ubuntu 24.04
Browse files Browse the repository at this point in the history
The default github action image moved from ubuntu 22.04 to 24.04, and
its list of installed packages is not the same. Make sure we have
libcairo for pycairo.
  • Loading branch information
anisse committed Dec 20, 2024
1 parent 9897e58 commit 1d27d57
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/python-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: ${{ env.PR_FETCH_DEPTH }}

- name: install cairo so we can install hwgraph dependencies
run: sudo apt update && sudo apt install libcairo2

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
Expand Down

0 comments on commit 1d27d57

Please sign in to comment.