forked from stantoxt/cms-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
119 lines (94 loc) · 2.26 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
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
# configuration for "master" branch
-
branches:
only:
- master
version: 5.0.{build}
configuration:
- Release
environment:
nodejs_version: "6"
TreatWarningsAsErrors: false
install:
- ps: Install-Product node $env:nodejs_version
- npm install g3 -g
- npm install gulp -g
- npm install
skip_tags: true
notifications:
- provider: GitHubPullRequest
on_build_success: true
on_build_failure: true
cache:
- packages -> **\packages.config
before_build:
- nuget restore source/siteserver.sln
after_build:
- cd home && npm install && cd ..
- g3 build home
- gulp build
- gulp zip
artifacts:
- path: siteserver_install.zip
name: siteserver_install
- path: siteserver_upgrade.zip
name: siteserver_upgrade
deploy:
release: siteserver-v$(appveyor_build_version)
description: 'SiteServer CMS'
provider: GitHub
auth_token:
secure: B/TFrPxGyyTS/NKTQsf/GBLPfGI+Rz/j3e7FVLaP6yjeUDljwkfvV70C+CT34/10
artifact: /.*\.zip/
draft: false
prerelease: false
on:
branch: master
appveyor_repo_tag: false
# configuration for "dev" branch
-
branches:
only:
- dev
version: 5.0.{build}
configuration:
- Release
environment:
nodejs_version: "6"
TreatWarningsAsErrors: false
install:
- ps: Install-Product node $env:nodejs_version
- npm install g3 -g
- npm install gulp -g
- npm install
skip_tags: true
notifications:
- provider: GitHubPullRequest
on_build_success: true
on_build_failure: true
cache:
- packages -> **\packages.config
before_build:
- nuget restore source/siteserver.sln
after_build:
- cd home && npm install && cd ..
- g3 build home
- gulp build
- gulp zip
artifacts:
- path: siteserver_install.zip
name: siteserver_install
- path: siteserver_upgrade.zip
name: siteserver_upgrade
deploy:
release: siteserver-dev-v$(appveyor_build_version)
description: 'SiteServer CMS'
provider: GitHub
auth_token:
secure: B/TFrPxGyyTS/NKTQsf/GBLPfGI+Rz/j3e7FVLaP6yjeUDljwkfvV70C+CT34/10
artifact: /.*\.zip/
draft: false
prerelease: false
on:
branch: dev
appveyor_repo_tag: false