• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1configuration:
2  - Debug
3
4environment:
5  matrix:
6    # Only test few combinations: "Visual Studio 2015 (14) + Win64/MinGW + Debug + DLL". We can
7    # test more combinations but AppVeyor just takes too long to finish (each
8    # combination takes ~15mins).
9    - platform: MinGW
10      language: cpp
11      image: Visual Studio 2015
12
13    - platform: Win64
14      language: cpp
15      image: Visual Studio 2015
16      BUILD_DLL: ON
17      UNICODE: ON
18
19    - platform: Win64
20      language: cpp
21      image: Visual Studio 2017
22      BUILD_DLL: OFF
23      UNICODE: ON
24
25    - platform: Win64
26      language: csharp
27      image: Visual Studio 2017
28
29# Our build scripts run tests automatically; we don't want AppVeyor
30# to try to detect them itself.
31test: off
32
33install:
34  - git submodule update --init --recursive
35
36before_build:
37  - if %platform%==MinGW set generator=MinGW Makefiles
38  - if %platform%==Win32 set generator=Visual Studio 14
39  - if %platform%==Win64 set generator=Visual Studio 14 Win64
40  - if %platform%==Win32 set vcplatform=Win32
41  - if %platform%==Win64 set vcplatform=x64
42
43build_script:
44  - CALL appveyor.bat
45
46skip_commits:
47  message: /.*\[skip appveyor\].*/
48