-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathappveyor.yml
56 lines (41 loc) · 1.37 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
-
branches:
only:
- development
build_script:
- build.cmd "package buildnumber=%APPVEYOR_BUILD_NUMBER% suffix=-test configuration=debug"
version: 1.2.0.{build}
test:
assemblies: .artifacts\release\*.Tests.dll
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true
cache:
- packages -> **\packages.config
after_build:
- appveyor PushArtifact .artifacts\packages\Raptorious.Finance.Swift.Mt940.%APPVEYOR_BUILD_VERSION%-test.nupkg
- appveyor PushArtifact .artifacts\packages\Raptorious.Finance.Swift.Mt940.%APPVEYOR_BUILD_VERSION%-test.symbols.nupkg
-
branches:
only:
- default
build_script:
- build.cmd "package buildnumber=%APPVEYOR_BUILD_NUMBER% configuration=release"
version: 1.2.0.{build}
test:
assemblies: .artifacts\release\*.Tests.dll
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true
cache:
- packages -> **\packages.config
deploy:
- provider: NuGet
api_key:
secure: D/PoxmXg9Ot/Wi6IUszecz04JMMm5qXAIPvJbWlM4fQieTR4nkF4Mb0NAwZWxYey
skip_symbols: false
after_build:
- appveyor PushArtifact .artifacts\packages\Raptorious.Finance.Swift.Mt940.%APPVEYOR_BUILD_VERSION%.nupkg
- appveyor PushArtifact .artifacts\packages\Raptorious.Finance.Swift.Mt940.%APPVEYOR_BUILD_VERSION%.symbols.nupkg