CI: Use official wine-staging package on openSUSE to get AF_UNIX support

AF_UNIX support was added to wine-staging with version 10.2.
This commit is contained in:
Ralf Habacker 2025-03-15 12:47:02 +01:00
parent abde4af83b
commit bdfef3916f

View file

@ -247,11 +247,17 @@ case "$ci_distro" in
# cross
packages=(
"${packages[@]}"
wine
xvfb-run
)
# add required repos
if ! zypper lr Emulators > /dev/null; then
$zypper ar --refresh --no-gpgcheck \
"https://download.opensuse.org/repositories/Emulators/$version/Emulators.repo"
fi
packages=(
"${packages[@]}"
wine-staging
wine-staging-32bit
)
if [ "${ci_host%%-*}" = x86_64 ]; then
bits="64"
else