-
Notifications
You must be signed in to change notification settings - Fork 17
/
.appveyor.yml
46 lines (35 loc) · 932 Bytes
/
.appveyor.yml
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
41
42
43
44
45
46
# Windows Build Configuration for AppVeyor
# http://www.appveyor.com/docs/appveyor-yml
# build version format
version: "{build}"
os: Visual Studio 2013
platform:
- x86
- x64
configuration:
- Debug
- Release
branches:
only:
- master
- dev
# scripts that run after cloning repository
install:
# - git clone https://github.com/KhronosGroup/glslang.git ../glslang
# - git clone https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers.git ../Vulkan-LoaderAndValidationLayers
build:
parallel: true # enable MSBuild parallel builds
verbosity: minimal
build_script:
- mkdir build && cd build
- cmake ..
- cmake --build . --config %CONFIGURATION%
test_script:
notifications:
- provider: Email
to:
- rene@lunarg.com
subject: 'Vulkan-Samples Windows Build #{{buildVersion}}: {{status}}'
on_build_success: false
on_build_failure: true
on_build_status_changed: true