From dc907a9165a288ffe67a54b1680c438648a6d344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 4 Jul 2020 12:31:46 +0200 Subject: [PATCH] package/ci: make MinGW build work again. --- package/ci/appveyor-lcov.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/ci/appveyor-lcov.sh b/package/ci/appveyor-lcov.sh index 9b9d7f976..fb7f21b09 100644 --- a/package/ci/appveyor-lcov.sh +++ b/package/ci/appveyor-lcov.sh @@ -1,7 +1,9 @@ #!/bin/bash set -ev -pacman -Sy --noconfirm mingw-w64-x86_64-perl +# Since 2020-07-04 this is asking for Import PGP key bla? [Y/n] +pacman -Sy --noconfirm msys2-keyring +pacman -S --noconfirm mingw-w64-x86_64-perl # mingw lcov package is empty, so download and use it manually # https://github.com/appveyor/ci/issues/1628