forked from GitTools/GitReleaseManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
69 lines (58 loc) · 2.04 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
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 1.0.{build}
branches:
only:
- master
- develop
#---------------------------------#
# environment configuration #
#---------------------------------#
# clone directory
clone_folder: C:\projects\GitReleaseManager
# environment variables
environment:
MyGetDevelopApiKey:
secure: YLAuIlbdXtjtumw6OyEtREOmeLQCBhoT7QvpnMf3dk9klv4XXwem2NK/zJ3T1AkZ
MyGetDevelopFeedUrl: https://www.myget.org/F/packages_develop/
MyGetMasterApiKey:
secure: Sk5RqF4OR1bkNc4Izl0x2YEMG+/7JKwsgmhae1jsBHsV4y47ziduS6e7QAniQWX3
MyGetMasterFeedUrl: https://www.myget.org/F/packages_master/
ChocolateyApiKey:
secure: mb19XDM/nj6pBpA9sCeS79TcrS1aaJri8ID9iB1agXDrFEFgi0MRACXZ5ZMOIDLd
ChocolateyFeedUrl: https://chocolatey.org/
NugetApiKey:
secure: kyvS4pYmOCyvas5wxibDusCABHBkmORratOuw13JYeo/xj+ggCnfZhihMVUrXL7x
NugetFeedUrl: https://nuget.org/
GitHubUserName:
secure: ZCA+aRya0+io2tdxuHNk7A==
GitHubPassword:
secure: 1wF/X5joO2IxJ2Y4rVQQNHq+FdvWTIg7BzOHxnoIL6NDy9S+lbPEXHkPeJ4ut2+a
CoverityProjectToken:
secure: ibAJfTZ3/OdIbl44xS3NcJFEOTfdn/xZYNom7SN24dA=
CoverityEmailDistribution:
secure: oLfhcOUb9277iSyIER67eYe9LJW2mYpsEkaLvvN3cz0=
COVERALLS_REPO_TOKEN:
secure: WZjpH6lAaED670CnGZhI1AI0OBG2T3BaA/8auYvFJ8T84OVLrSab4liqJDQw8RwT
#---------------------------------#
# build configuration #
#---------------------------------#
build_script:
- ps: .\BuildScripts\build.ps1
test: off
#---------------------------------#
# caching configuration #
#---------------------------------#
cache:
- Source\packages
#---------------------------------#
# notifications configuration #
#---------------------------------#
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/a72ea926ecc08de68e71
on_build_success: true
on_build_failure: true
on_build_status_changed: true