From acade465f1282cc32a7f2ad94159034789569702 Mon Sep 17 00:00:00 2001 From: ThePhD Date: Mon, 25 Dec 2017 20:24:26 -0500 Subject: [PATCH] update --- appveyor.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 943973d6..2f8cfd43 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -55,6 +55,10 @@ matrix: LUA_VERSION: 5.2.4 - platform: x86 LUA_VERSION: 5.1.5 + - platform: x86 + MINGW_VERSION: 6.3.0 + - platform: x86 + MINGW_VERSION: 5.3.0 - image: Visual Studio 2017 MINGW_VERSION: 6.3.0 - image: Visual Studio 2017 @@ -62,13 +66,15 @@ matrix: init: # make sure we have Ninja +- set top_level=%cd% +- cd .. - md tools - cd tools - set NINJA_URL="https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip" - appveyor DownloadFile %NINJA_URL% -FileName ninja.zip - 7z x ninja.zip -o%cd%\ninja - set PATH=%cd%\ninja;%PATH% -- cd .. +- cd "%top_level%" # configure the generator appropriately - set arch= - if "%PLATFORM%"=="x64" (set arch= Win64)