summaryrefslogtreecommitdiff
path: root/.gitlab-ci/test-msys2.sh
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2019-12-17 20:23:28 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2019-12-18 09:25:06 +0100
commit5ef2748ceff64e3eb7c10374471ec2c7fff8db35 (patch)
tree9e2a71f198b8dcf313cc151702cb2d8566fb68aa /.gitlab-ci/test-msys2.sh
parent8f8229dcd28329e7d23ccff0093b6243bc84bb0c (diff)
downloadgtk+-5ef2748ceff64e3eb7c10374471ec2c7fff8db35.tar.gz
CI: Install a newer MSYS2 pango package; Don't allow failures again
gtk master requires a newer pango than msys2 has, so install our own copy on top. See #2243
Diffstat (limited to '.gitlab-ci/test-msys2.sh')
-rw-r--r--.gitlab-ci/test-msys2.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab-ci/test-msys2.sh b/.gitlab-ci/test-msys2.sh
index 05624265f4..4b9f175c3f 100644
--- a/.gitlab-ci/test-msys2.sh
+++ b/.gitlab-ci/test-msys2.sh
@@ -33,6 +33,10 @@ pacman --noconfirm -S --needed \
mingw-w64-$MSYS2_ARCH-gst-plugins-bad \
mingw-w64-$MSYS2_ARCH-shared-mime-info
+# https://gitlab.gnome.org/GNOME/gtk/issues/2243
+wget "https://gitlab.gnome.org/creiter/gitlab-ci-win32-runner/raw/master/pango/mingw-w64-$MSYS2_ARCH-pango-1.44.7-1-any.pkg.tar.xz"
+pacman --noconfirm -U "mingw-w64-$MSYS2_ARCH-pango-1.44.7-1-any.pkg.tar.xz"
+
mkdir -p _ccache
export CCACHE_BASEDIR="$(pwd)"
export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"