-
Notifications
You must be signed in to change notification settings - Fork 112
/
appveyor.yml
43 lines (42 loc) · 1.07 KB
/
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
version: 2.5.{build}
skip_tags: true
skip_branch_with_pr: true
image: Visual Studio 2017
configuration: Release
platform:
- x86
- x64
only_commits:
files:
- apis_def/*
- '**/*.h'
- '**/*.cpp'
- '**/*.rc'
- '**/*.vcxproj'
build_script:
- cmd: >-
msbuild.exe xAnalyzer.sln /verbosity:minimal /t:Build /p:Configuration=Release;Platform=Win32
msbuild.exe xAnalyzer.sln /verbosity:minimal /t:Build /p:Configuration=Release;Platform=x64
artifacts:
- path: bin\x32\xAnalyzer.dp32
name: xAnalyzer.dp32
- path: bin\x64\xAnalyzer.dp64
name: xAnalyzer.dp64
- path: apis_def
name: apis_def
deploy:
- provider: GitHub
tag: $(appveyor_build_version)
release: xAnalyzer x86x64
auth_token:
secure: e0tpvY9RhIn1LUvJjU0ast63hPNRCuXk/PbmXengsaugqMIm3a+2CSh/vGFbZDC/
artifact: xAnalyzer.dp32,xAnalyzer.dp64,apis_def
notifications:
- provider: Email
to:
subject: AppVeyor New Build Notice
message: A new build has been placed in GitHub for xAnalyzer
on_build_success: true
on_build_failure: true
on_build_status_changed: false