This repository has been archived by the owner on Jun 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 163
/
appveyor.yml
83 lines (64 loc) · 2.06 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
72
73
74
75
76
77
78
79
80
81
82
83
image: Visual Studio 2019
configuration: Release
install:
- choco install gitversion.portable --version 4.0.0
- GitVersion /output buildserver
cache:
- C:\ProgramData\chocolatey\bin -> appveyor.yml
- C:\ProgramData\chocolatey\lib -> appveyor.yml
environment:
COVERALLS_REPO_TOKEN:
secure: 7apBd6hzfYjVoClqPS+PlHPMqNbUe6Bhlku/45cB2cZiWff4M36qn3B3ibgnRU/+
CoverityProjectToken:
secure: 8BZT5bnory1d0llayVIHpbKdpDsfqwnTX6QCOA1LJdw=
CoverityEmailDistribution:
secure: bVPyDjOtyByKm9rSo/rjN79B6Z6/pI1hhbhYZHiAJ/E=
before_build:
- nuget restore src
build_script:
- ps: .\BuildScripts\AppVeyor-Build.ps1
test: off
artifacts:
- path: artifacts\coverage.xml
- path: artifacts\Pretzel.ScriptCs.*.nupkg
name: Pretzel.ScriptCs.nupkg
- path: artifacts\Pretzel.ScriptCs.*.zip
name: Pretzel.ScriptCs.zip
- path: artifacts\Pretzel.Logic.*.symbols.nupkg
name: Pretzel.Logic.symbols.nupkg
- path: artifacts\Pretzel.Logic.*.nupkg
name: Pretzel.Logic.nupkg
- path: artifacts\Pretzel.Tool.*.nupkg
name: Pretzel.Tool.nupkg
- path: artifacts\Pretzel.*.nupkg
name: Pretzel.nupkg
- path: artifacts\Pretzel.*.zip
name: Pretzel.zip
deploy:
- provider: GitHub
auth_token:
secure: piWk1xd/YxJK+HJOFwJyBORP+Go1p4XO6148zeePdyVEGPxk4wGXk5tP2jYkM4eU
artifact: Pretzel.zip, Pretzel.ScriptCs.zip
description: $(releaseDescription)
on:
appveyor_repo_tag: true
- provider: NuGet
server: https://chocolatey.org/
api_key:
secure: 2GBJF71EQfU+kIL5NHVM4wYoCRcFf/gM/voNIgud8vDWUE+uA1ye/hRWjJPQWA5w
skip_symbols: true
artifact: Pretzel.nupkg, Pretzel.ScriptCs.nupkg
on:
appveyor_repo_tag: true
- provider: NuGet
api_key:
secure: NmM24h0TPsfINvy/1Qr4iJkmRjVztuY5umCJ6mzpxSjvuKl48AXjGEcgow+iJwL8
artifact: Pretzel.Logic.nupkg, Pretzel.Logic.symbols.nupkg
on:
appveyor_repo_tag: true
- provider: NuGet
api_key:
secure: NmM24h0TPsfINvy/1Qr4iJkmRjVztuY5umCJ6mzpxSjvuKl48AXjGEcgow+iJwL8
artifact: Pretzel.Tool.nupkg
on:
appveyor_repo_tag: true