forked from taocpp/PEGTL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
40 lines (29 loc) · 693 Bytes
/
.appveyor.yml
File metadata and controls
40 lines (29 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
version: '{branch}-{build}'
skip_commits:
files:
- README.md
- doc/**/*
os:
- Visual Studio 2017
platform:
- x86
- x64
configuration:
- Debug
- Release
environment:
matrix:
- GENERATOR: Visual Studio 15 2017
- GENERATOR: Visual Studio 15 2017 Win64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
GENERATOR: Visual Studio 16 2019
init: []
before_build:
- if defined BINDIR (set "PATH=%BINDIR%;%PATH:C:\Program Files\Git\usr\bin;=%")
- md build
- cd build
- cmake -Wno-dev --config "%CONFIGURATION%" -G "%GENERATOR%" ..
build_script:
- cmake --build . --config "%CONFIGURATION%"
test_script:
- ctest -C "%CONFIGURATION%" --output-on-failure