appveyor.yml 1.14 KB
Newer Older
1 2 3 4 5
configuration:
  - Debug

environment:
  matrix:
6 7 8
    # 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).
9 10 11 12 13 14
    - platform: MinGW
      language: cpp
      image: Visual Studio 2015

    - platform: Win64
      language: cpp
15
      image: Visual Studio 2015
16
      BUILD_DLL: ON
17
      UNICODE: ON
18

19 20
    - platform: Win64
      language: cpp
21 22 23 24
      image: Visual Studio 2017
      BUILD_DLL: OFF
      UNICODE: ON

25 26
    - platform: Win64
      language: csharp
27
      image: Visual Studio 2017
28

29 30 31 32
# Our build scripts run tests automatically; we don't want AppVeyor
# to try to detect them itself.
test: off

33
install:
34
  - git submodule update --init --recursive
35 36

before_build:
37
  - if %platform%==MinGW set generator=MinGW Makefiles
38 39
  - if %platform%==Win32 set generator=Visual Studio 14
  - if %platform%==Win64 set generator=Visual Studio 14 Win64
40 41 42 43 44 45 46 47
  - if %platform%==Win32 set vcplatform=Win32
  - if %platform%==Win64 set vcplatform=x64

build_script:
  - CALL appveyor.bat

skip_commits:
  message: /.*\[skip appveyor\].*/