-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
71 lines (53 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 0.9.{build}
# branches to build
branches:
only:
- master
- stable
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image: Visual Studio 2017
# clone directory
clone_folder: c:\projects\DependenciesInstaller
#---------------------------------#
# build configuration #
#---------------------------------#
platform: Any CPU
configuration: Release
build:
parallel: true # enable MSBuild parallel builds
project: src\SoftGene.DependencyInstaller.sln # path to Visual Studio solution or project
publish_nuget: true
# MSBuild verbosity level
verbosity: minimal
environment:
COVERALLS_REPO_TOKEN:
secure: e3Gb5PW4zsAd4gKsn6oy6qpGnp0omvhP4W48ZPXgi2iKOPgJJVGJ+eOq8Mce13Em
api_key:
secure: qYvxO/DmomKiG2erjL3wl3e9hYh6JsVkdGRTsWoWWX3Y0VZKiXqFiuQDMJu528ZL
# scripts to run before build
before_build:
- nuget restore src\SoftGene.DependencyInstaller.sln
before_package:
after_build:
build_script:
test_script:
- cmd: cd src\SoftGene.DependencyInstaller.Tests
- cmd: dotnet test
on_finish :
# any cleanup in here
notifications:
# Email
- provider: Email
to:
- arturstylus@gmail.com
- nktlitvinenko@gmail.com
subject: 'Build {{status}}' # optional
message: "{{message}}, {{commitId}}, ..." # optional
on_build_status_changed: true