Skip to content

Commit 1a1bb8c

Browse files
committed
ci: added missing apt dependency for Qt 6.5+
1 parent c06369f commit 1a1bb8c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ jobs:
2626
- name: Install APT dependencies
2727
if: runner.os == 'Linux'
2828
run: |
29-
sudo apt-get install -y qt5-default libfontconfig1
29+
# libxcb-cursor0 needed since Qt 6.5
30+
# https://stackoverflow.com/a/75941575/965332
31+
sudo apt-get install -y qt5-default libfontconfig1 libxcb-cursor0
3032
- name: Install dependencies
3133
shell: bash
3234
run: |
33-
pip install poetry==1.3.2
35+
pip install poetry
3436
python -m venv venv
3537
source venv/bin/activate || source venv/Scripts/activate
3638
poetry install

0 commit comments

Comments
 (0)