build/windows: 'gpgv' is a quasi-msys2 dependency

See: https://github.com/HolyBlackCat/quasi-msys2/issues/31

As I thought in b6fb472a and 41b3dfb7, this is mostly related to apt.
This commit is contained in:
Bruno 2025-01-16 06:12:47 -03:00
parent ef8dedd109
commit 046d79c227
No known key found for this signature in database

View file

@ -25,19 +25,20 @@ fi
## Install quasi-msys2 and its deps ## Install quasi-msys2 and its deps
# Beginning of install code block # Beginning of install code block
if [ "$GITLAB_CI" ]; then if [ "$GITLAB_CI" ]; then
apt-get update -y apt-get update -y >/dev/null
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
clang \ clang \
lld \ lld \
llvm llvm >/dev/null
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
gawk \ gawk \
gpg \ gpg \
gpgv \
make \ make \
sudo \ sudo \
tar \ tar \
wget \ wget \
zstd zstd >/dev/null
fi fi
# End of install code block # End of install code block
if [ ! -d 'quasi-msys2' ]; then if [ ! -d 'quasi-msys2' ]; then