This repository has been archived by the owner on Jan 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
55 lines (54 loc) · 1.67 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
# configuration for "non-master" branches
-
image: Visual Studio 2017
branches:
except:
- master
version: 1.0.{build}
configuration: Release
platform: Any CPU
environment:
COVERALLS_TOKEN:
secure: cG/yRt2RFjgzxLhlF4sZqFRCAPGJO6oyVK8aFWisMhkQcp3cJn1r2nl0ujgW5dXx
NUGET_SOURCE: https://www.myget.org/F/dhgms/api/v2/package
NUGET_APIKEY:
secure: RErDVlA5kOT7ZT4maCrp4KE73pzZYaMz5T+OrDqRu2AObjUTaNNvTvRwEqlve/O+
sonarqubeLogin:
secure: cn/J1/GsOt4dF7zRxdB9ajSk1/UzxYZq0MMLLQPkFA92GtrWIYeiKgrzC2d5z7bq
build_script:
- ps: .\build.ps1
artifacts:
- path: artifacts/*.nupkg
- path: '**/*.binlog'
test: off
on_failure:
- ps: Get-ChildItem *.binlog -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
# configuration for "master" branch
-
image: Visual Studio 2017
branches:
only:
- master
version: 1.0.{build}
configuration: Release
platform: Any CPU
environment:
COVERALLS_TOKEN:
secure: cG/yRt2RFjgzxLhlF4sZqFRCAPGJO6oyVK8aFWisMhkQcp3cJn1r2nl0ujgW5dXx
GITHUB_USERNAME:
secure: mHIm6yhC2xu2toMv1z91YA==
GITHUB_TOKEN:
secure: 9ULk5oYK+0ELg1yx5HovqzJvKrcAP9JBeE11VFd9svWDLKT7M8BPUsaiosmawiN3
NUGET_SOURCE: https://www.nuget.org/api/v2/package
NUGET_APIKEY:
secure: 8GpBZ6IHRM4AV4mP8qCqUgJi0NCHX17OlzbrEZRoDCE0s2ZwXHOeqMfIwrGaakg9
sonarqubeLogin:
secure: cn/J1/GsOt4dF7zRxdB9ajSk1/UzxYZq0MMLLQPkFA92GtrWIYeiKgrzC2d5z7bq
build_script:
- ps: .\build.ps1
artifacts:
- path: artifacts/*.nupkg
- path: '**/*.binlog'
test: off
on_failure:
- ps: Get-ChildItem *.binlog -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }