Merge pull request #722 from libexpat/issue-720-fix-ci

Fix CI (fixes #720)
This commit is contained in:
Sebastian Pipping 2023-05-24 23:23:38 +02:00 committed by GitHub
commit 0219545fb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,10 @@ jobs:
set -x -u
source /etc/os-release
sudo apt-get update
# Unlock 32bit architecture (for Wine further down)
sudo dpkg --add-architecture i386 # for wine32
sudo apt-get update # due to new architecture
sudo apt-get install --yes --no-install-recommends -V \
cmake \
docbook2x \
@ -61,11 +64,11 @@ jobs:
lcov \
libbsd-dev \
lzip \
moreutils
moreutils \
ppa-purge
# Install 32bit Wine
sudo dpkg --add-architecture i386 # for wine32
sudo apt-get update # due to new architecture
sudo ppa-purge -y ppa:ubuntu-toolchain-r/test # to unblock
sudo apt-get install --yes --no-install-recommends -V \
mingw-w64 \
wine-stable \