gitlab-ci, build/windows: Try to fix Debian Testing 'apt'

This commit is contained in:
Bruno 2025-01-14 13:01:21 -03:00
parent 728b9cdd28
commit b6fb472ae2
No known key found for this signature in database
2 changed files with 4 additions and 3 deletions

View file

@ -457,6 +457,7 @@ gimp-flatpak-x64:
- if: '$GIMP_CI_CROSSROAD_WIN64 != null' - if: '$GIMP_CI_CROSSROAD_WIN64 != null'
variables: variables:
DEB_VERSION: testing DEB_VERSION: testing
DEBIAN_FRONTEND: noninteractive
MSYSTEM_PREFIX: clang64 MSYSTEM_PREFIX: clang64
cache: [] cache: []

View file

@ -25,11 +25,11 @@ 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 >/dev/null apt-get update -y &> apt.log || cat apt.log
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
clang \ clang \
lld \ lld \
llvm >/dev/null llvm &>> apt.log || cat apt.log
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
gawk \ gawk \
gpg \ gpg \
@ -37,7 +37,7 @@ if [ "$GITLAB_CI" ]; then
sudo \ sudo \
tar \ tar \
wget \ wget \
zstd >/dev/null zstd &>> apt.log | rm apt.log || cat apt.log
fi fi
# End of install code block # End of install code block
if [ ! -d 'quasi-msys2' ]; then if [ ! -d 'quasi-msys2' ]; then