-
Notifications
You must be signed in to change notification settings - Fork 5
/
appveyor.yml
62 lines (62 loc) · 1.66 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
version: 0.2.0.{build}
image: Visual Studio 2017
pull_requests:
do_not_increment_build_number: true
branches:
only:
- Release
- master
- SelfHostService
- SelfHostServiceProd
configuration: Release
clone_depth: 10
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
before_build:
- cmd: nuget restore TaskCat.SelfHost\TaskCat.SelfHost.sln
build:
project: TaskCat.SelfHost/TaskCat.SelfHost.sln
verbosity: minimal
artifacts:
- path: TaskCat.SelfHost\TaskCat\bin\$(configuration)
name: TaskCat
type: zip
- path: TaskCat.SelfHost\TaskCat.Auth\bin\$(configuration)
name: TaskCatAuth
type: zip
- path: TaskCat.SelfHost\TaskCat.Account\bin\$(configuration)
name: TaskCatAccount
type: zip
- path: TaskCat.SelfHost\TaskCat.Job.Index\bin\$(configuration)
name: TaskCatJobIndex
type: zip
# - path: TaskCat.SelfHost\TaskCat.BackgroundJobService\bin\$(configuration)\net462\win7-x64
# name: TaskCatBackgroundJobService
# type: zip
test: off
deploy:
- provider: Environment
name: TaskCatDev
on:
branch: SelfHostService
- provider: Environment
name: TaskCatProd
on:
branch: SelfHostServiceProd
notifications:
- provider: Slack
incoming_webhook: https://hooks.slack.com/services/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
channel: '#builds'
on_build_success: true
on_build_failure: true
on_build_status_changed: true
- provider: Slack
incoming_webhook: https://hooks.slack.com/services/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
channel: '#build'
on_build_success: true
on_build_failure: true
on_build_status_changed: true