aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDaniel Neus <[email protected]>2016-02-17 21:03:32 +0100
committerDaniel Neus <[email protected]>2016-02-17 21:03:32 +0100
commiteb579e1c544e3487e90d01391f6d3900f8fe1c6e (patch)
treeae142f5a6175a00c01e3359236460ea79ab050db /src
parentca07a372a49874c8918b6b22e0329ad831c9d713 (diff)
add VS2015 jobs
Diffstat (limited to 'src')
-rw-r--r--src/scripts/ci/appveyor.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/scripts/ci/appveyor.yml b/src/scripts/ci/appveyor.yml
index 37edf615a..9687f8070 100644
--- a/src/scripts/ci/appveyor.yml
+++ b/src/scripts/ci/appveyor.yml
@@ -1,4 +1,4 @@
-os: Windows Server 2012 R2
+os: Visual Studio 2015
platform:
- x86
@@ -6,11 +6,18 @@ platform:
environment:
matrix:
+ - COMPILER: msvc-14.0
+ - COMPILER: msvc-12.0
- MODE: --enable-shared
- MODE: --disable-shared
install:
- - call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
+ - if %compiler% == msvc-12.0 (
+ call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
+ )
+ - if %compiler% == msvc-14.0 (
+ call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %PLATFORM%
+ )
- cl # check compiler version
# always build via amalgamation due to build time constraints on appveyor