Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1 | platform: |
| 2 | - Win64 |
| 3 | |
| 4 | configuration: |
| 5 | - Debug |
| 6 | |
| 7 | environment: |
| 8 | matrix: |
| 9 | - language: cpp |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 10 | image: Visual Studio 2015 |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 11 | BUILD_DLL: ON |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 12 | UNICODE: ON |
| 13 | |
| 14 | - language: cpp |
| 15 | image: Visual Studio 2017 |
| 16 | BUILD_DLL: OFF |
| 17 | UNICODE: ON |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 18 | |
| 19 | - language: csharp |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 20 | image: Visual Studio 2017 |
| 21 | |
| 22 | # Our build scripts run tests automatically; we don't want AppVeyor |
| 23 | # to try to detect them itself. |
| 24 | test: off |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 25 | |
| 26 | install: |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 27 | - git submodule update --init --recursive |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 28 | |
| 29 | before_build: |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 30 | - if %platform%==Win32 set generator=Visual Studio 14 |
| 31 | - if %platform%==Win64 set generator=Visual Studio 14 Win64 |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 32 | - if %platform%==Win32 set vcplatform=Win32 |
| 33 | - if %platform%==Win64 set vcplatform=x64 |
| 34 | |
| 35 | build_script: |
| 36 | - CALL appveyor.bat |
| 37 | |
| 38 | skip_commits: |
| 39 | message: /.*\[skip appveyor\].*/ |