ci: Avoid Archlinux' pyqt6 6.1.7-3 which lacks QSignalSpy

See https://github.com/qutebrowser/qutebrowser/issues/8242#issuecomment-2409077518
This commit is contained in:
Florian Bruhin 2024-10-13 20:27:34 +02:00
parent 02cee732fc
commit 27e446d26d
1 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,10 @@ RUN pacman -Su --noconfirm \
gcc \
libyaml \
xorg-xdpyinfo
{% if unstable and qt6 %}
# WORKAROUND: 6.7.1-3 in [extra-testing] removes QSignalSpy
RUN pacman -U --noconfirm https://mirror.pkgbuild.com/extra/os/x86_64/python-pyqt6-6.7.1-2-x86_64.pkg.tar.zst
{% endif %}
RUN useradd user -u 1001 && \
mkdir /home/user && \