forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
66 lines (65 loc) · 2 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
# configuration for "master" branch
-
image: Visual Studio 2017
branches:
only:
- master
version: 1.0.{build}
environment:
COVERALLS_TOKEN: jLYKFVgST432LzbZeyLnLpoteXwQLveBw
GITHUB_USERNAME:
secure: 4l81stjUdh712ndqnwBryw==
GITHUB_TOKEN:
secure: TukU0LPvpoN1xkqjNNI8Ij7OxMnCmJxRnj6CsCDcAu+euK3eRTPRFJZl94na2+68
NUGET_SOURCE: https://www.nuget.org/api/v2/package
NUGET_APIKEY:
secure: cANUegIQhgeZ7Yg4sosXNGmFF33i77nTriEjaeniQ4S26btcwYsopOO3qXKlbrvf
SIGNCLIENT_SECRET:
secure: MMu26EDCyAEM/Vfj2kyTMVdvVXd3jhpqYAogqQ9/+HYytbwOHvna7G0jSmrluhez
init:
- cd "C:\projects\reactiveui"
install:
- cmd: nuget install SignClient -Version 0.7.0 -SolutionDir %APPVEYOR_BUILD_FOLDER% -Verbosity quiet -ExcludeVersion
build_script:
- ./build.cmd
cache:
- tools -> build.*
- src\packages -> **\packages.config
- '%USERPROFILE%\.nuget\packages -> **\project.json'
artifacts:
- path: artifacts/*.nupkg
- path: '**/bin/*'
- path: '**/*.binlog'
- path: src/ReactiveUI.**/Events_*.cs
test: off
# configuration for "develop" branch
-
image: Visual Studio 2017
branches:
except:
- master
skip_branch_with_pr: true
version: 1.0.{build}
environment:
COVERALLS_TOKEN: jLYKFVgST432LzbZeyLnLpoteXwQLveBw
NUGET_SOURCE: https://www.myget.org/F/reactiveui/api/v2/package
NUGET_APIKEY:
secure: KTszzEEs33kbeqkpGGMvM58elvNLeTJhytpv7s9fPHoY4ZZmk5fMwofKDtK2lhno
SIGNCLIENT_SECRET:
secure: MMu26EDCyAEM/Vfj2kyTMVdvVXd3jhpqYAogqQ9/+HYytbwOHvna7G0jSmrluhez
init:
- cd "C:\projects\reactiveui"
install:
- cmd: nuget install SignClient -Version 0.7.0 -SolutionDir %APPVEYOR_BUILD_FOLDER% -Verbosity quiet -ExcludeVersion
build_script:
- ./build.cmd
cache:
- tools -> build.*
- src\packages -> **\packages.config
- '%USERPROFILE%\.nuget\packages -> **\project.json'
artifacts:
- path: artifacts/*.nupkg
- path: '**/bin/*'
- path: '**/*.binlog'
- path: src/ReactiveUI.**/Events_*.cs
test: off