Skip to content

Commit

Permalink
ci: added missing apt dependency for Qt 6.5+
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Aug 2, 2023
1 parent c06369f commit 1a1bb8c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@ jobs:
- name: Install APT dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get install -y qt5-default libfontconfig1
# libxcb-cursor0 needed since Qt 6.5
# https://stackoverflow.com/a/75941575/965332
sudo apt-get install -y qt5-default libfontconfig1 libxcb-cursor0
- name: Install dependencies
shell: bash
run: |
pip install poetry==1.3.2
pip install poetry
python -m venv venv
source venv/bin/activate || source venv/Scripts/activate
poetry install
Expand Down

0 comments on commit 1a1bb8c

Please sign in to comment.