2015-12-12 01:09:20 +00:00
|
|
|
configuration:
|
|
|
|
- Debug
|
|
|
|
|
|
|
|
environment:
|
|
|
|
matrix:
|
2018-04-28 08:59:52 +00:00
|
|
|
# Only test few combinations: "Visual Studio 2015 (14) + Win64/MinGW + Debug + DLL". We can
|
|
|
|
# test more combinations but AppVeyor just takes too long to finish (each
|
|
|
|
# combination takes ~15mins).
|
2018-05-02 22:47:17 +00:00
|
|
|
- platform: MinGW
|
|
|
|
language: cpp
|
|
|
|
image: Visual Studio 2015
|
|
|
|
|
|
|
|
- platform: Win64
|
|
|
|
language: cpp
|
2018-03-20 18:43:51 +00:00
|
|
|
image: Visual Studio 2015
|
2015-12-12 01:09:20 +00:00
|
|
|
BUILD_DLL: ON
|
2016-08-19 22:25:54 +00:00
|
|
|
UNICODE: ON
|
2015-12-12 01:09:20 +00:00
|
|
|
|
2018-06-25 20:22:10 +00:00
|
|
|
- platform: Win64
|
|
|
|
language: cpp
|
2018-06-18 18:38:06 +00:00
|
|
|
image: Visual Studio 2017
|
|
|
|
BUILD_DLL: OFF
|
|
|
|
UNICODE: ON
|
|
|
|
|
2018-05-02 22:47:17 +00:00
|
|
|
- platform: Win64
|
|
|
|
language: csharp
|
2017-05-04 07:51:46 +00:00
|
|
|
image: Visual Studio 2017
|
2015-12-12 01:09:20 +00:00
|
|
|
|
2016-07-14 21:01:47 +00:00
|
|
|
# Our build scripts run tests automatically; we don't want AppVeyor
|
|
|
|
# to try to detect them itself.
|
|
|
|
test: off
|
|
|
|
|
2015-12-12 01:09:20 +00:00
|
|
|
install:
|
2018-03-26 20:54:32 +00:00
|
|
|
- git submodule update --init --recursive
|
2015-12-12 01:09:20 +00:00
|
|
|
|
|
|
|
before_build:
|
2018-05-02 22:47:17 +00:00
|
|
|
- if %platform%==MinGW set generator=MinGW Makefiles
|
2018-03-20 18:43:51 +00:00
|
|
|
- if %platform%==Win32 set generator=Visual Studio 14
|
|
|
|
- if %platform%==Win64 set generator=Visual Studio 14 Win64
|
2015-12-12 01:09:20 +00:00
|
|
|
- if %platform%==Win32 set vcplatform=Win32
|
|
|
|
- if %platform%==Win64 set vcplatform=x64
|
|
|
|
|
|
|
|
build_script:
|
|
|
|
- CALL appveyor.bat
|
|
|
|
|
|
|
|
skip_commits:
|
|
|
|
message: /.*\[skip appveyor\].*/
|