procedural-3d-engine/appveyor.yml

24 lines
529 B
YAML
Raw Normal View History

2017-01-03 19:50:04 +01:00
version: '{build}'
branches:
only:
- master
skip_tags: true
2019-03-24 19:26:10 +01:00
image: Visual Studio 2017
2017-01-03 19:50:04 +01:00
platform: x64
2017-11-04 18:20:42 +01:00
configuration: Release
install:
- git submodule update --init --recursive
2017-11-04 18:20:42 +01:00
before_build:
2019-03-24 19:26:10 +01:00
- cmake -G "Visual Studio 15 2017 Win64" .
2017-01-03 19:50:04 +01:00
build:
project: vulkanExamples.sln
parallel: true
verbosity: minimal
notifications:
- provider: Email
to:
- webmaster@saschawillems.de
subject: Vulkan examples build {{buildVersion}} - {{status}}
on_build_success: false
on_build_failure: true
on_build_status_changed: true