From 3110322f8cb261758bcc6618dacef3e01dc76b90 Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Thu, 2 May 2019 12:09:09 +0200 Subject: [PATCH] appveyor-ci: use choco MinGW 5.3.0 to work around build problem (fixes lp:1827225) --- .ci/appveyor-prepare.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/appveyor-prepare.bat b/.ci/appveyor-prepare.bat index 26ca8118a..c1d0e5d9a 100644 --- a/.ci/appveyor-prepare.bat +++ b/.ci/appveyor-prepare.bat @@ -57,10 +57,10 @@ if "%TOOLCHAIN%"=="mingw" ( ) if "%OS%"=="64BIT" ( echo [INFO] Installing MinGW 64bit - cinst mingw || cinst mingw + cinst mingw --version="5.3.0" || cinst mingw --version="5.3.0" ) else ( echo [INFO] Installing MinGW 32bit - cinst mingw --x86 || cinst mingw --x86 + cinst mingw --x86 --version="5.3.0" || cinst mingw --x86 --version="5.3.0" ) )