Skip to content

Commit fd605f8

Browse files
committed
Install Qt/OpenGL runtime deps in CI
Add an Ubuntu-specific step to the python-package workflow to install Qt/OpenGL runtime dependencies (libegl1, libgl1, libopengl0, libxkbcommon-x11-0, libxcb-cursor0). This ensures CI runners have the required libraries for Qt/OpenGL-based install checks; the step runs apt-get update and installs the packages before the existing "Install tools" step.
1 parent 2a86606 commit fd605f8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/python-package.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ jobs:
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

24+
- name: Install Qt/OpenGL runtime deps (Ubuntu)
25+
run: |
26+
sudo apt-get update
27+
sudo apt-get install -y \
28+
libegl1 \
29+
libgl1 \
30+
libopengl0 \
31+
libxkbcommon-x11-0 \
32+
libxcb-cursor0
33+
2434
- name: Install tools
2535
run: |
2636
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)