forked from getscissorhands/Scissorhands.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
399 lines (393 loc) · 12.7 KB
/
appveyor.yml
File metadata and controls
399 lines (393 loc) · 12.7 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
# for `dev`/`master` branch
-
version: 1.0.0-alpha-{build}
branches:
only:
- dev
- master
skip_tags: true
os: Visual Studio 2015
configuration:
- Debug
platform: Any CPU
install:
- cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cmd: dnvm install 1.0.0-rc1-update1
before_build:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
build:
verbosity: detailed
test_script:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-tests.ps1
# for `release/all` branch
-
version: 1.0.0-alpha-{build}
branches:
only:
- release/all
skip_tags: true
os: Visual Studio 2015
configuration:
- Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: 1.0.0.{build}
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
project_name: Scissorhands.NET
project_name_core: Scissorhands.Core
project_name_helpers: Scissorhands.Helpers
project_name_themes: Scissorhands.Themes
project_name_services: Scissorhands.Services
project_name_net: Scissorhands.NET
github_auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
install:
- cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cmd: dnvm install 1.0.0-rc1-update1
before_build:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-project-versioning.ps1
build:
publish_nuget: true
publish_nuget_symbols: true
verbosity: detailed
test_script:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-tests.ps1
artifacts:
- path: artifacts\bin\$(project_name_core)\$(configuration)\*.nupkg
name: core
- path: artifacts\bin\$(project_name_helpers)\$(configuration)\*.nupkg
name: helpers
- path: artifacts\bin\$(project_name_themes)\$(configuration)\*.nupkg
name: themes
- path: artifacts\bin\$(project_name_services)\$(configuration)\*.nupkg
name: services
- path: artifacts\bin\$(project_name_net)\$(configuration)\*.nupkg
name: webapp
deploy:
- provider: NuGet
api_key:
secure: +nwrSNmydF+453m3jZAS/qb5D2KAgs1ZXQDhCE/AjPvYo1IRDGI5pj3PFriX7ADd
on:
branch: release/all
platform: Any CPU
configuration: Release
- provider: GitHub
tag: $(project_name)-v$(appveyor_build_version)
description: $(project_name)-v$(appveyor_build_version) has been released
auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
on:
branch: release/all
platform: Any CPU
configuration: Release
after_deploy:
- cmd: git config --global credential.helper store
- ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:github_auth_token):x-oauth-basic@github.com`n"
- cmd: git push origin --delete release/all
# for `release/core` branch
-
version: 1.0.0-alpha-{build}
branches:
only:
- release/core
skip_tags: true
os: Visual Studio 2015
configuration:
- Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: 1.0.0.{build}
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
project_name: Scissorhands.Core
github_auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
install:
- cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cmd: dnvm install 1.0.0-rc1-update1
before_build:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-project-versioning.ps1
build:
publish_nuget: true
publish_nuget_symbols: true
verbosity: detailed
test_script:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-tests.ps1
artifacts:
- path: artifacts\bin\$(project_name)\$(configuration)\*.nupkg
name: core
deploy:
- provider: NuGet
api_key:
secure: +nwrSNmydF+453m3jZAS/qb5D2KAgs1ZXQDhCE/AjPvYo1IRDGI5pj3PFriX7ADd
artifact: core
on:
branch: release/core
platform: Any CPU
configuration: Release
- provider: GitHub
tag: $(project_name)-v$(appveyor_build_version)
description: $(project_name)-v$(appveyor_build_version) has been released
auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
artifact: core
on:
branch: release/core
platform: Any CPU
configuration: Release
after_deploy:
- cmd: git config --global credential.helper store
- ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:github_auth_token):x-oauth-basic@github.com`n"
- cmd: git push origin --delete release/core
# for `release/helpers` branch
-
version: 1.0.0-alpha-{build}
branches:
only:
- release/helpers
skip_tags: true
os: Visual Studio 2015
configuration:
- Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: 1.0.0.{build}
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
project_name: Scissorhands.Helpers
github_auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
install:
- cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cmd: dnvm install 1.0.0-rc1-update1
before_build:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-project-versioning.ps1
build:
publish_nuget: true
publish_nuget_symbols: true
verbosity: detailed
test_script:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-tests.ps1
artifacts:
- path: artifacts\bin\$(project_name)\$(configuration)\*.nupkg
name: helpers
deploy:
- provider: NuGet
api_key:
secure: +nwrSNmydF+453m3jZAS/qb5D2KAgs1ZXQDhCE/AjPvYo1IRDGI5pj3PFriX7ADd
artifact: helpers
on:
branch: release/helpers
platform: Any CPU
configuration: Release
- provider: GitHub
tag: $(project_name)-v$(appveyor_build_version)
description: $(project_name)-v$(appveyor_build_version) has been released
auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
artifact: helpers
on:
branch: release/helpers
platform: Any CPU
configuration: Release
after_deploy:
- cmd: git config --global credential.helper store
- ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:github_auth_token):x-oauth-basic@github.com`n"
- cmd: git push origin --delete release/helpers
# for `release/themes` branch
-
version: 1.0.0-alpha-{build}
branches:
only:
- release/themes
skip_tags: true
os: Visual Studio 2015
configuration:
- Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: 1.0.0.{build}
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
project_name: Scissorhands.Themes
github_auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
install:
- cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cmd: dnvm install 1.0.0-rc1-update1
before_build:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-project-versioning.ps1
build:
publish_nuget: true
publish_nuget_symbols: true
verbosity: detailed
test_script:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-tests.ps1
artifacts:
- path: artifacts\bin\$(project_name)\$(configuration)\*.nupkg
name: themes
deploy:
- provider: NuGet
api_key:
secure: +nwrSNmydF+453m3jZAS/qb5D2KAgs1ZXQDhCE/AjPvYo1IRDGI5pj3PFriX7ADd
artifact: themes
on:
branch: release/themes
platform: Any CPU
configuration: Release
- provider: GitHub
tag: $(project_name)-v$(appveyor_build_version)
description: $(project_name)-v$(appveyor_build_version) has been released
auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
artifact: themes
on:
branch: release/themes
platform: Any CPU
configuration: Release
after_deploy:
- cmd: git config --global credential.helper store
- ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:github_auth_token):x-oauth-basic@github.com`n"
- cmd: git push origin --delete release/themes
# for `release/services` branch
-
version: 1.0.0-alpha-{build}
branches:
only:
- release/services
skip_tags: true
os: Visual Studio 2015
configuration:
- Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: 1.0.0.{build}
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
project_name: Scissorhands.Services
github_auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
install:
- cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cmd: dnvm install 1.0.0-rc1-update1
before_build:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-project-versioning.ps1
build:
publish_nuget: true
publish_nuget_symbols: true
verbosity: detailed
test_script:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-tests.ps1
artifacts:
- path: artifacts\bin\$(project_name)\$(configuration)\*.nupkg
name: services
deploy:
- provider: NuGet
api_key:
secure: +nwrSNmydF+453m3jZAS/qb5D2KAgs1ZXQDhCE/AjPvYo1IRDGI5pj3PFriX7ADd
artifact: services
on:
branch: release/services
platform: Any CPU
configuration: Release
- provider: GitHub
tag: $(project_name)-v$(appveyor_build_version)
description: $(project_name)-v$(appveyor_build_version) has been released
auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
artifact: services
on:
branch: release/services
platform: Any CPU
configuration: Release
after_deploy:
- cmd: git config --global credential.helper store
- ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:github_auth_token):x-oauth-basic@github.com`n"
- cmd: git push origin --delete release/services
# for `release/webapp` branch
-
version: 1.0.0-alpha-{build}
branches:
only:
- release/webapp
skip_tags: true
os: Visual Studio 2015
configuration:
- Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: 1.0.0.{build}
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
project_name: Scissorhands.NET
github_auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
install:
- cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cmd: dnvm install 1.0.0-rc1-update1
before_build:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-project-versioning.ps1
build:
publish_nuget: true
publish_nuget_symbols: true
verbosity: detailed
test_script:
- cmd: dnu restore -f https://www.myget.org/F/aspnet-contrib/api/v3/index.json
- ps: ./run-tests.ps1
artifacts:
- path: artifacts\bin\$(project_name)\$(configuration)\*.nupkg
name: webapp
deploy:
- provider: NuGet
api_key:
secure: +nwrSNmydF+453m3jZAS/qb5D2KAgs1ZXQDhCE/AjPvYo1IRDGI5pj3PFriX7ADd
artifact: webapp
on:
branch: release/webapp
platform: Any CPU
configuration: Release
- provider: GitHub
tag: $(project_name)-v$(appveyor_build_version)
description: $(project_name)-v$(appveyor_build_version) has been released
auth_token:
secure: 3tp7rCl4cvk/WDYBaeodIlmalNiYVWQYxE1wmVU7aMbkMKP0WtlMjjOU2yhX0D4n
artifact: webapp
on:
branch: release/webapp
platform: Any CPU
configuration: Release
after_deploy:
- cmd: git config --global credential.helper store
- ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:github_auth_token):x-oauth-basic@github.com`n"
- cmd: git push origin --delete release/webapp