forked from cakephp/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkins_jobs.groovy
249 lines (233 loc) · 4.86 KB
/
jenkins_jobs.groovy
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
def final REPO_NAME = 'cakephp/docs'
// Each version of the book has basically the same
// job definition use a string 'template' to save duplication
def final BUILD_STEPS = '''\
# Rebuild the index.
make populate-index ES_HOST="$DOKKU_ELASTICSEARCH_AQUA_URL" ES_HOST_V2="$DOKKU_ELASTICSEARCH_AQUA_URL"
rm -rf /tmp/book-VERSION-$GIT_COMMIT
git clone . /tmp/book-VERSION-$GIT_COMMIT
cd /tmp/book-VERSION-$GIT_COMMIT
sed -i.bak 's#html populate-index#html#' Makefile
git add Makefile && git commit -m "Add deploy requirements"
NEW_COMMIT=$(git rev-parse HEAD)
git remote rm origin
git branch -D master || true
git checkout -b master
git remote rm dokku || true
git remote add dokku [email protected]:book-VERSION
git push -fv dokku master
rm -rf /tmp/book-VERSION-$GIT_COMMIT
'''
job('Book - Deploy 3.x') {
description('Deploy the 3.x book when changes are pushed.')
scm {
github(REPO_NAME, '3.x')
}
triggers {
scm('H/5 * * * *')
}
logRotator {
daysToKeep(30)
}
steps {
shell(BUILD_STEPS.replaceAll('VERSION', '3'))
}
publishers {
slackNotifier {
room('#dev')
notifyFailure(true)
notifyRepeatedFailure(true)
}
}
}
job('Book - Deploy 3.next') {
description('Deploy the 3.next book when changes are pushed.')
scm {
github(REPO_NAME, '3.next')
}
triggers {
scm('H/5 * * * *')
}
logRotator {
daysToKeep(30)
}
steps {
shell(BUILD_STEPS.replaceAll('VERSION', '3next'))
}
publishers {
slackNotifier {
room('#dev')
notifyFailure(true)
notifyRepeatedFailure(true)
}
}
}
job('Book - Deploy 4.0') {
description('Deploy the 4.0 book when changes are pushed.')
scm {
github(REPO_NAME, '4.x')
}
triggers {
scm('H/5 * * * *')
}
logRotator {
daysToKeep(30)
}
steps {
shell(BUILD_STEPS.replaceAll('VERSION', '4'))
}
publishers {
slackNotifier {
room('#dev')
notifyFailure(true)
notifyRepeatedFailure(true)
}
}
}
job('Book - Deploy 4.next') {
description('Deploy the 4.next book when changes are pushed.')
scm {
github(REPO_NAME, '4.next')
}
triggers {
scm('H/5 * * * *')
}
logRotator {
daysToKeep(30)
}
steps {
shell(BUILD_STEPS.replaceAll('VERSION', '4next'))
}
publishers {
slackNotifier {
room('#dev')
notifyFailure(true)
notifyRepeatedFailure(true)
}
}
}
job('Book - Deploy 5x') {
description('Deploy the 5x book when changes are pushed.')
scm {
github(REPO_NAME, '5.x')
}
triggers {
scm('H/5 * * * *')
}
logRotator {
daysToKeep(30)
}
steps {
shell(BUILD_STEPS.replaceAll('VERSION', '5'))
}
publishers {
slackNotifier {
room('#dev')
notifyFailure(true)
notifyRepeatedFailure(true)
}
}
}
job('Book - Deploy 2.x') {
description('Deploy the 2.x book when changes are pushed.')
scm {
github(REPO_NAME, '2.x')
}
triggers {
scm('H/5 * * * *')
}
logRotator {
daysToKeep(30)
}
steps {
shell(BUILD_STEPS.replaceAll('VERSION', '2'))
}
publishers {
slackNotifier {
room('#dev')
notifyFailure(true)
notifyRepeatedFailure(true)
}
}
}
job('Book - Deploy 1.3') {
description('Deploy the 1.3 book when changes are pushed.')
scm {
github(REPO_NAME, '1.3')
}
triggers {
scm('H/5 * * * *')
}
logRotator {
daysToKeep(30)
}
steps {
shell(BUILD_STEPS.replaceAll('VERSION', '13'))
}
}
job('Book - Deploy 1.2') {
description('Deploy the 1.2 book when changes are pushed.')
scm {
github(REPO_NAME, '1.2')
}
triggers {
scm('H/5 * * * *')
}
logRotator {
daysToKeep(30)
}
steps {
shell(BUILD_STEPS.replaceAll('VERSION', '12'))
}
}
job('Book - Deploy 1.1') {
description('Deploy the 1.1 book when changes are pushed.')
scm {
github(REPO_NAME, '1.1')
}
triggers {
scm('H/5 * * * *')
}
logRotator {
daysToKeep(30)
}
steps {
shell(BUILD_STEPS.replaceAll('VERSION', '11'))
}
}
job('Book - Rebuild 2.x search index') {
description('Rebuild the 2.x search index. Will result in temporary unavailability of search as index is rebuilt.')
scm {
github(REPO_NAME, '2.x')
}
logRotator {
daysToKeep(30)
}
steps {
shell('make rebuild-index ES_HOST="$ELASTICSEARCH_URL"')
}
}
job('Book - Rebuild 3.x search index') {
description('Rebuild the 3.x search index. Will result in temporary unavailability of search as index is rebuilt.')
scm {
github(REPO_NAME, '3.x')
}
logRotator {
daysToKeep(30)
}
steps {
shell('make rebuild-index ES_HOST="$ELASTICSEARCH_URL"')
}
}
job('Book - Rebuild 4.x search index') {
description('Rebuild the 4.x search index. Will result in temporary unavailability of search as index is rebuilt.')
scm {
github(REPO_NAME, '4.x')
}
logRotator {
daysToKeep(30)
}
steps {
shell('make rebuild-index ES_HOST="$ELASTICSEARCH_URL"')
}
}