-
Notifications
You must be signed in to change notification settings - Fork 100
/
appveyor.yml
48 lines (44 loc) · 1.36 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
#---------------------------------#
# environment configuration #
#---------------------------------#
version: 2.6.0.{build}
os: WMF 5
install:
- ps: . .\AppVeyor\AppVeyorInstall.ps1
environment:
nugetKey:
secure: hwpi8ydkuOj0J22HAalIy+mRq4kxDKH7EjtCqwQ5V96svUwfostPY00EIp2HtNhZ
github_access_token:
secure: Xk7jTkdE82qskQy9WPZK0zSafSjT6gK1SYxH8m4Aa8muCMQ4ACkkztJ3toh9DFlS
ModuleName: cChoco
#---------------------------------#
# build configuration #
#---------------------------------#
build_script:
- ps: . .\AppVeyor\AppVeyorBuild.ps1
#---------------------------------#
# test configuration #
#---------------------------------#
test_script:
- ps: . .\AppVeyor\AppVeyorTest.ps1
#---------------------------------#
# deployment configuration #
#---------------------------------#
deploy_script:
- ps: . .\AppVeyor\AppveyorDeploy.ps1
#---------------------------------#
# notification configuration #
#---------------------------------#
notifications:
- provider: Email
to:
subject: AppVeyor - cChoco DSC Resource Build Notification
on_build_success: false
on_build_failure: true
on_build_status_changed: true
- provider: Webhook
url: https://webhooks.gitter.im/e/f764ee3ccd6ed7348224
on_build_success: true
on_build_failure: true
on_build_status_changed: true