CI: Save one call to "sudo apt-get update" in coverage.yml

This commit is contained in:
Sebastian Pipping 2023-05-24 21:06:29 +02:00
parent 7156a6f5d7
commit b14cee59ef

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 \
@ -64,8 +67,6 @@ jobs:
moreutils
# Install 32bit Wine
sudo dpkg --add-architecture i386 # for wine32
sudo apt-get update # due to new architecture
sudo apt-get install --yes --no-install-recommends -V \
mingw-w64 \
wine-stable \