We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c828a2 commit f146043Copy full SHA for f146043
1 file changed
.github/workflows/test.yml
@@ -31,7 +31,14 @@ jobs:
31
test:
32
runs-on: ubuntu-22.04
33
timeout-minutes: 20
34
+ env:
35
+ QT_QPA_PLATFORM: offscreen
36
steps:
37
+ # PyQt6.QtGui import requires libEGL.so.1 (even with QT_QPA_PLATFORM=offscreen)
38
+ - name: Packages
39
+ run: |
40
+ sudo apt-get update
41
+ sudo apt-get install -y libegl1 libgl1 libxkbcommon-x11-0
42
- name: Checkout
43
uses: actions/checkout@v3
44
with:
0 commit comments