protobuf/appveyor.yml

48 lines
1.1 KiB
YAML
Raw Normal View History

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