-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
46 lines (37 loc) · 1.1 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
############################################################
#
# See http://www.appveyor.com/docs/appveyor-yml for many more options
#
# Credit for a lot of this file goes to RamblingCookieMonster:
# https://github.com/RamblingCookieMonster/PSSQLite/blob/master/appveyor.yml
#
############################################################
# This tells AppVeyor that we need WMF 5 and PowerShell 5.0
os: WMF 5
environment:
ModuleName: $(APPVEYOR_PROJECT_NAME)
Tags: 'HipChat'
LicenseUri: 'https://github.com/AtlassianPS/HipChatPS/blob/master/LICENSE'
ProjectUri: 'https://github.com/AtlassianPS/HipChatPS/'
# To encrypt a value in AppVeyor, go to the Account menu and choose "Encrypt data"
#PSGalleryAPIKey:
# secure: TBC
version: 0.1.0.{build}
# Only build commits to these branches
branches:
only:
- master
- develop
# Don't rebuild when I tag a release on GitHub
skip_tags: true
skip_commits:
message: /readme*/
files:
- .github/
- .vscode/
- assets/
- docs/
- Tools/
test_script:
- ps: . .\build.ps1
build: false