Magic_Game/appveyor.yml

48 lines
688 B
YAML
Raw Normal View History

version: 0.9.{build}
2019-08-06 09:13:08 +08:00
2019-08-05 14:38:26 +08:00
skip_tags: true
2019-08-06 09:13:08 +08:00
image:
- Visual Studio 2019
- Visual Studio 2017
- Visual Studio 2015
2019-08-05 14:38:26 +08:00
skip_commits:
message: /\[chore\]/
2019-08-06 09:13:08 +08:00
2019-08-05 14:38:26 +08:00
only_commits:
files:
- '**/*.h'
- '**/*.hpp'
- '**/*.cpp'
- '**/*.sln'
- '**/*.vcxproj'
- '**/*.rc'
2019-08-06 09:13:08 +08:00
2019-08-05 11:24:54 +08:00
configuration:
- Debug
- Release
2019-08-06 09:13:08 +08:00
2019-08-05 11:24:54 +08:00
platform:
- Win32
2019-08-06 09:13:08 +08:00
2019-08-05 11:24:54 +08:00
before_build:
- ps: nuget restore projects/Kiwano.sln
2019-08-06 09:13:08 +08:00
2019-08-05 11:24:54 +08:00
build:
parallel: true
project: projects/Kiwano.sln
verbosity: normal
2019-08-06 09:13:08 +08:00
artifacts:
- path: projects/output/
name: $(platform).$(configuration)
type: zip
2019-08-06 09:13:08 +08:00
2019-08-05 12:32:05 +08:00
notifications:
- provider: Email
to:
- 569629550@qq.com
on_build_success: false
on_build_failure: true
2019-08-05 14:38:26 +08:00
on_build_status_changed: false