-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathappveyor.yml
51 lines (41 loc) · 1.03 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
44
45
46
47
48
49
50
51
version: 2.3.2.{build}
environment:
COVERALLS_REPO_TOKEN:
secure: KEH5rJaqCoWoCV2MhkrMlClj3SVIlB2Eu0YK4mqmhRM+ANEfGiFyROo2RWHkJXQz
image:
- Visual Studio 2017
- Ubuntu
configuration:
- Debug
- Release
assembly_info:
patch: true
file: '**\*SharedAssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: "{version}β"
before_build:
- cmd: build.cmd -Target Restore
- sh: ./build.sh --target=Restore
build_script:
- cmd: build.cmd -Target Build
- sh: ./build.sh --target=Build
test_script:
- cmd: build.cmd -Target AllTests
- sh: ./build.sh --target=AllTests
after_test:
- cmd: build.cmd -Target Upload-Coverage
after_build:
- cmd: build.cmd -Target Publish
- sh: ./build.sh --target=Publish
notifications:
- provider: GitHubPullRequest
on_build_success: true
on_build_failure: true
on_build_status_changed: true
- provider: Email
to:
on_build_success: true
on_build_failure: true
on_build_status_changed: true