Commit 3336ea00 by Arkady Shapkin Committed by Dominic Hamon

Support VS2017 on AppVeyor (#376)

parent 7a74b748
version: '{build}' version: '{build}'
image: Visual Studio 2017
configuration: configuration:
- Debug - Debug
- Release - Release
environment: environment:
matrix: matrix:
- compiler: msvc-12-seh - compiler: msvc-15-seh
generator: "Visual Studio 12 2013" generator: "Visual Studio 15 2017"
- compiler: msvc-12-seh - compiler: msvc-15-seh
generator: "Visual Studio 12 2013 Win64" generator: "Visual Studio 15 2017 Win64"
- compiler: msvc-14-seh - compiler: msvc-14-seh
generator: "Visual Studio 14 2015" generator: "Visual Studio 14 2015"
...@@ -18,9 +20,16 @@ environment: ...@@ -18,9 +20,16 @@ environment:
- compiler: msvc-14-seh - compiler: msvc-14-seh
generator: "Visual Studio 14 2015 Win64" generator: "Visual Studio 14 2015 Win64"
- compiler: msvc-12-seh
generator: "Visual Studio 12 2013"
- compiler: msvc-12-seh
generator: "Visual Studio 12 2013 Win64"
- compiler: gcc-5.3.0-posix - compiler: gcc-5.3.0-posix
generator: "MinGW Makefiles" generator: "MinGW Makefiles"
cxx_path: 'C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin' cxx_path: 'C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin'
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
matrix: matrix:
fast_finish: true fast_finish: true
...@@ -30,12 +39,6 @@ install: ...@@ -30,12 +39,6 @@ install:
- if "%generator%"=="MinGW Makefiles" (set "PATH=%PATH:C:\Program Files\Git\usr\bin;=%") - if "%generator%"=="MinGW Makefiles" (set "PATH=%PATH:C:\Program Files\Git\usr\bin;=%")
- if not "%cxx_path%"=="" (set "PATH=%PATH%;%cxx_path%") - if not "%cxx_path%"=="" (set "PATH=%PATH%;%cxx_path%")
# TODO Remove this. This is a hack to work around bogus warning messages
# See http://goo.gl/euguBI for more information.
before_build:
- del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
- del "C:\Program Files (x86)\MSBuild\12.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
build_script: build_script:
- md _build -Force - md _build -Force
- cd _build - cd _build
...@@ -51,4 +54,3 @@ artifacts: ...@@ -51,4 +54,3 @@ artifacts:
name: logs name: logs
- path: '_build/Testing/**/*.xml' - path: '_build/Testing/**/*.xml'
name: test_results name: test_results
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment