From 989ad9b759686047755d5b7797a56aac59996e93 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 24 Jun 2018 16:35:16 +0200 Subject: [PATCH] :construction_worker: using help from https://stackoverflow.com/a/48509334/266378 --- appveyor.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 375093f5..17839c57 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,16 +2,12 @@ version: '{build}' environment: matrix: - - COMPILER: mingw + - os: Visual Studio 2015 + COMPILER: mingw platform: x86 FLAGS: "" GENERATOR: MinGW Makefiles - - COMPILER: mingw - platform: x64 - FLAGS: "" - GENERATOR: MinGW Makefiles - - os: Visual Studio 2015 platform: x86 FLAGS: "" @@ -50,10 +46,10 @@ init: - msbuild /version install: - - if "%COMPILER%"=="mingw" set PATH=C:\MinGW\bin;%PATH% + - if "%COMPILER%"=="mingw" set PATH=C:\MinGW\bin before_build: - - cmake . -G "%GENERATOR%" -DCMAKE_CXX_FLAGS="%FLAGS%" + - cmake . -G "%GENERATOR%" -DCMAKE_CXX_FLAGS="%FLAGS%" -DCMAKE_IGNORE_PATH="C:/Program Files/Git/usr/bin" build_script: - cmake --build . --config Release