108 lines
2.3 KiB
YAML
108 lines
2.3 KiB
YAML
version: 0.9.{build}
|
|
|
|
skip_tags: true
|
|
|
|
# pull_requests:
|
|
# do_not_increment_build_number: true
|
|
|
|
# image:
|
|
# - Visual Studio 2019
|
|
# - Visual Studio 2017
|
|
# - Visual Studio 2015
|
|
|
|
environment:
|
|
time_out_mins: 5
|
|
job_to_deploy: 6 # 3(images) * 1(platform) * 2(configuration)
|
|
flag_to_deploy: false
|
|
APPVEYOR_API_TOKEN:
|
|
secure: UJFCbRNHMOqQg3e3Kv/ZnaIqqwXAt+5HDldetaZsZ5E=
|
|
matrix:
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
|
VS_PLATFORM_TOOLSET: v142
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
VS_PLATFORM_TOOLSET: v141
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
VS_PLATFORM_TOOLSET: v140
|
|
|
|
skip_commits:
|
|
message: /\[chore\]/
|
|
|
|
only_commits:
|
|
files:
|
|
- projects/
|
|
- src/
|
|
- scripts/**/*.ps1
|
|
- appveyor.yml
|
|
|
|
for:
|
|
-
|
|
branches:
|
|
except:
|
|
- master
|
|
only_commits:
|
|
message: /\[build\]/
|
|
|
|
configuration:
|
|
- Debug
|
|
- Release
|
|
|
|
platform:
|
|
- Win32
|
|
|
|
# cache: packages/
|
|
|
|
install:
|
|
- ps: .\scripts\appveyor\install_coapp.ps1
|
|
|
|
# before_build:
|
|
# - ps: nuget restore projects/Kiwano.sln
|
|
|
|
build:
|
|
parallel: true
|
|
project: projects/Kiwano.sln
|
|
verbosity: minimal
|
|
|
|
after_build:
|
|
- ps: .\scripts\appveyor\wait_for_other_jobs.ps1
|
|
|
|
artifacts:
|
|
- path: projects/output/**/*.lib
|
|
name: $(appveyor_project_name)-v$(appveyor_build_version)-$(VS_PLATFORM_TOOLSET).$(platform).$(configuration)
|
|
- path: projects/output/**/*.pdb
|
|
name: $(appveyor_project_name)-v$(appveyor_build_version)-$(VS_PLATFORM_TOOLSET).$(platform).$(configuration)
|
|
|
|
before_deploy:
|
|
- ps: .\scripts\appveyor\coapp_make.ps1
|
|
|
|
deploy:
|
|
- provider: GitHub
|
|
repository: KiwanoEngine/Kiwano
|
|
tag: v$(appveyor_build_version)
|
|
release: v$(appveyor_build_version)
|
|
description: Kiwano-v$(appveyor_build_version) releases.
|
|
auth_token:
|
|
secure: pDsK6i03d4qRjtrNXcbhLpAquso/muJWgDSWJHnxP7b6p54kXEvptB67J+1kJOhq
|
|
artifact: /.*\.nupkg/
|
|
draft: true
|
|
on:
|
|
branch: master
|
|
# APPVEYOR_REPO_TAG: true
|
|
flag_to_deploy: true
|
|
|
|
- provider: NuGet
|
|
api_key:
|
|
secure: EY1214+kiGlWCnigIhzOkbjRqI+69VjELzgPdWREzWpNyuVK62V0x2ukoZiY8w6T
|
|
# skip_symbols: true
|
|
artifact: /.*\.nupkg/
|
|
on:
|
|
branch: master
|
|
# APPVEYOR_REPO_TAG: true
|
|
flag_to_deploy: true
|
|
|
|
notifications:
|
|
- provider: Email
|
|
to:
|
|
- 569629550@qq.com
|
|
on_build_success: false
|
|
on_build_failure: true
|
|
on_build_status_changed: false |