Redirect gsutil log to file(s) to have cleaner Jenkins log
[releng.git] / jjb / genesis / genesis-foreman.yml
1 # this is the job configuration for bgs
2 - project:
3
4     name: genesis-foreman
5
6     project: 'genesis'
7
8     installer:
9         - foreman
10
11     jobs:
12         - 'genesis-{installer}-verify'
13         - 'genesis-{installer}-merge'
14         - 'genesis-{installer}-daily-{stream}'
15         - 'genesis-{installer}-build'
16         - 'genesis-{installer}-deploy'
17
18     # stream:    branch with - in place of / (eg. stable-helium)
19     # branch:    branch (eg. stable/helium)
20     stream:
21         - master:
22             branch: 'master'
23
24
25 ########################
26 # job templates
27 ########################
28
29 - job-template:
30     name: 'genesis-{installer}-verify'
31
32     project-type: freestyle
33
34     node: ericsson-build
35
36     logrotate:
37         daysToKeep: 30
38         numToKeep: 10
39         artifactDaysToKeep: -1
40         artifactNumToKeep: -1
41
42     parameters:
43         - string:
44             name: INSTALLER
45             default: '{installer}'
46             description: "Installer to use."
47         - string:
48             name: BUILD_DIRECTORY
49             default: $WORKSPACE/build_output
50         - string:
51             name: CACHE_DIRECTORY
52             default: '$HOME/opnfv/cache/genesis-{installer}'
53         - string:
54             name: GIT_BASE
55             default: https://gerrit.opnfv.org/gerrit/genesis
56         - project-parameter:
57             project: '{project}'
58         - gerrit-parameter:
59             branch: 'master'
60
61     scm:
62         - gerrit-trigger-scm:
63             credentials-id: '{ssh-credentials}'
64             refspec: '$GERRIT_REFSPEC'
65             choosing-strategy: 'gerrit'
66
67     wrappers:
68         - ssh-agent-credentials:
69             user: '{ssh-credentials}'
70
71     triggers:
72         - gerrit:
73             trigger-on:
74                 - patchset-created-event:
75                     exclude-drafts: 'false'
76                     exclude-trivial-rebase: 'false'
77                     exclude-no-code-change: 'false'
78                 - draft-published-event
79                 - comment-added-contains-event:
80                     comment-contains-value: 'recheck'
81                 - comment-added-contains-event:
82                     comment-contains-value: 'reverify'
83             projects:
84               - project-compare-type: 'ANT'
85                 project-pattern: 'genesis'
86                 branches:
87                   - branch-compare-type: 'ANT'
88                     branch-pattern: '**/master'
89                 file-paths:
90                   - compare-type: ANT
91                     pattern: 'common/**'
92                   - compare-type: ANT
93                     pattern: '{installer}/**'
94
95
96     builders:
97         - 'verify'
98
99 - job-template:
100     name: 'genesis-{installer}-merge'
101
102     # builder-merge job to run JJB update
103     #
104     # This job's purpose is to update all the JJB
105
106     project-type: freestyle
107
108     node: ericsson-build
109
110     logrotate:
111         daysToKeep: 30
112         numToKeep: 40
113         artifactDaysToKeep: -1
114         artifactNumToKeep: 5
115
116     parameters:
117         - string:
118             name: INSTALLER
119             default: '{installer}'
120             description: "Installer to use."
121         - string:
122             name: BUILD_DIRECTORY
123             default: $WORKSPACE/build_output
124         - string:
125             name: CACHE_DIRECTORY
126             default: '$HOME/opnfv/cache/genesis-{installer}'
127         - string:
128             name: GIT_BASE
129             default: https://gerrit.opnfv.org/gerrit/genesis
130         - project-parameter:
131             project: '{project}'
132         - gerrit-parameter:
133             branch: 'master'
134
135     scm:
136         - gerrit-trigger-scm:
137             credentials-id: '{ssh-credentials}'
138             refspec: ''
139             choosing-strategy: 'default'
140
141     wrappers:
142         - ssh-agent-credentials:
143             user: '{ssh-credentials}'
144
145     triggers:
146         - gerrit:
147             trigger-on:
148                 - change-merged-event
149                 - comment-added-contains-event:
150                     comment-contains-value: 'remerge'
151             projects:
152               - project-compare-type: 'ANT'
153                 project-pattern: 'genesis'
154                 branches:
155                     - branch-compare-type: 'ANT'
156                       branch-pattern: '**/master'
157                 file-paths:
158                   - compare-type: ANT
159                     pattern: 'common/**'
160                   - compare-type: ANT
161                     pattern: '{installer}/**'
162
163     builders:
164         - 'merge'
165
166 - job-template:
167     name: 'genesis-{installer}-daily-{stream}'
168
169     project-type: freestyle
170
171     node: ericsson-build
172
173     parameters:
174         - genesis-parameters:
175             installer: '{installer}'
176
177     scm:
178         - git:
179             skip-tag: true
180             url: $GIT_BASE
181             branches:
182                 - $GERRIT_BRANCH
183             refspec: $GERRIT_REFSPEC
184
185     triggers:
186         - pollscm: '@midnight'
187
188     logrotate:
189         daysToKeep: 30
190         numToKeep: 10
191         artifactDaysToKeep: -1
192         artifactNumToKeep: -1
193
194     builders:
195         - trigger-builds:
196           - project: 'genesis-{installer}-build'
197             git-revision: true
198             block: true
199         - trigger-builds:
200           - project: 'genesis-{installer}-deploy'
201             git-revision: true
202             block: true
203         - trigger-builds:
204           - project: 'functest-opnfv-jump-2'
205             block: true
206
207 - job-template:
208     name: 'genesis-{installer}-build'
209
210     project-type: freestyle
211
212     node: ericsson-build
213
214     logrotate:
215         daysToKeep: 30
216         numToKeep: 10
217         artifactDaysToKeep: -1
218         artifactNumToKeep: -1
219
220     parameters:
221         - genesis-parameters:
222             installer: '{installer}'
223
224     scm:
225         - git:
226             skip-tag: true
227             url: $GIT_BASE
228             branches:
229                 - $GERRIT_BRANCH
230             refspec: $GERRIT_REFSPEC
231
232     builders:
233         - 'build'
234         - 'upload-artifact'
235
236 - job-template:
237     name: 'genesis-{installer}-deploy'
238
239     project-type: freestyle
240
241     node: opnfv-jump-2
242
243     logrotate:
244         daysToKeep: 30
245         numToKeep: 10
246         artifactDaysToKeep: -1
247         artifactNumToKeep: -1
248
249     parameters:
250         - genesis-parameters:
251             installer: '{installer}'
252
253     scm:
254         - git:
255             skip-tag: true
256             url: $GIT_BASE
257             branches:
258                 - $GERRIT_BRANCH
259             refspec: $GERRIT_REFSPEC
260
261     builders:
262         - 'deploy'
263
264 ########################
265 # parameter macros
266 ########################
267 - parameter:
268     name: genesis-parameters
269     parameters:
270         - string:
271             name: INSTALLER
272             default: '{installer}'
273             description: "Installer to use."
274         - string:
275             name: BUILD_DIRECTORY
276             default: $WORKSPACE/build_output
277             description: "Directory where the build artifact will be located upon the completion of the build."
278         - string:
279             name: CACHE_DIRECTORY
280             default: '$HOME/opnfv/cache/genesis-{installer}'
281             description: "Directory where the cache to be used during the build is located."
282         - string:
283             name: GIT_BASE
284             default: https://gerrit.opnfv.org/gerrit/genesis
285             description: "Used for overriding the GIT URL coming from Global Jenkins configuration in case if the stuff is done on none-LF HW."
286         - string:
287             name: GERRIT_BRANCH
288             default: origin/master
289             description: "Branch to build, deploy and test."
290         - string:
291             name: GERRIT_REFSPEC
292             default: refs/heads/master
293             description: "Refspec to retrieve."
294         - string:
295             name: GS_URL
296             default: 'artifacts.opnfv.org/genesis/{installer}'
297             description: "URL to Google Storage."
298
299 ########################
300 # builder macros
301 ########################
302 - builder:
303     name: 'verify'
304     builders:
305         - shell: |
306             #!/bin/bash
307             set -o errexit
308             set -o nounset
309             set -o pipefail
310             set -x
311
312             # get the dependencies - temporary fix for RC0
313             [[ -d $WORKSPACE/$INSTALLER/build ]] || mkdir -p $WORKSPACE/$INSTALLER/build
314             cp /home/jenkins/Downloads/opnfv_iso/* $WORKSPACE/$INSTALLER/build/
315
316             # below lines perhaps need to be enabled in order to fetch images from internet
317             # as we are having disk space issues on ericsson-build slave
318             #wget http://ftp.riken.jp/Linux/centos/7.0.1406/isos/x86_64/CentOS-7.0-1406-x86_64-Minimal.iso
319             #wget http://download.virtualbox.org/virtualbox/rpm/fedora/20/x86_64/VirtualBox-4.3-4.3.26_98988_fedora18-1.x86_64.rpm
320             #wget http://repos.duss-janser.ch/vagrant/vagrant_1.7.2_x86_64.rpm
321
322             # do the build
323             cd $WORKSPACE/$INSTALLER/ci
324             ./build.sh $BUILD_DIRECTORY
325
326             # list the build artifacts
327             ls -al $BUILD_DIRECTORY
328
329             # remove the BUILD_DIRECTORY to reclaim some space
330             /bin/rm -rf $BUILD_DIRECTORY
331
332 - builder:
333     name: 'merge'
334     builders:
335         - shell: |
336             #!/bin/bash
337             set -o errexit
338             set -o nounset
339             set -o pipefail
340             set -x
341
342             # get the dependencies - temporary fix for RC0
343             [[ -d $WORKSPACE/$INSTALLER/build ]] || mkdir -p $WORKSPACE/$INSTALLER/build
344             cp /home/jenkins/Downloads/opnfv_iso/* $WORKSPACE/$INSTALLER/build/
345
346             # below lines perhaps need to be enabled in order to fetch images from internet
347             # as we are having disk space issues on ericsson-build slave
348             #wget http://ftp.riken.jp/Linux/centos/7.0.1406/isos/x86_64/CentOS-7.0-1406-x86_64-Minimal.iso
349             #wget http://download.virtualbox.org/virtualbox/rpm/fedora/20/x86_64/VirtualBox-4.3-4.3.26_98988_fedora18-1.x86_64.rpm
350             #wget http://repos.duss-janser.ch/vagrant/vagrant_1.7.2_x86_64.rpm
351
352             # do the build
353             cd $WORKSPACE/$INSTALLER/ci
354             ./build.sh $BUILD_DIRECTORY
355
356             # list the build artifacts
357             ls -al $BUILD_DIRECTORY
358
359             # remove the BUILD_DIRECTORY to reclaim some space
360             /bin/rm -rf $BUILD_DIRECTORY
361
362 - builder:
363     name: 'build'
364     builders:
365         - shell: |
366             #!/bin/bash
367             set -o errexit
368             set -o nounset
369             set -o pipefail
370
371             # log info to console
372             echo "Starting build of $INSTALLER. This could take some time..."
373             echo "--------------------------------------------------------"
374             echo
375
376             # create the cache directory if it doesn't exist
377             [[ -d $CACHE_DIRECTORY ]] || mkdir -p $CACHE_DIRECTORY
378
379             # set OPNFV_ARTIFACT_VERSION
380             export OPNFV_ARTIFACT_VERSION=$(date -u +"%Y-%m-%d_%H-%M-%S")
381
382             # start the build
383             cd $WORKSPACE/$INSTALLER/ci
384             ./build.sh -v $OPNFV_ARTIFACT_VERSION -c file://$CACHE_DIRECTORY $BUILD_DIRECTORY
385
386             # save information regarding artifact into file
387             (
388                 echo "OPNFV_ARTIFACT_VERSION=$OPNFV_ARTIFACT_VERSION"
389                 echo "OPNFV_GIT_URL=$(git config --get remote.origin.url)"
390                 echo "OPNFV_GIT_SHA1=$(git rev-parse HEAD)"
391                 echo "OPNFV_ARTIFACT_URL=$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.iso"
392                 echo "OPNFV_ARTIFACT_MD5SUM=$(md5sum $BUILD_DIRECTORY/OPNFV-CentOS-7-x86_64-$OPNFV_ARTIFACT_VERSION.iso | cut -d' ' -f1)"
393                 echo "OPNFV_BUILD_URL=$BUILD_URL"
394                 echo "OPNFV_BUILD=OK"
395             ) > $WORKSPACE/opnfv.properties
396
397             echo
398             echo "--------------------------------------------------------"
399             echo "Done!"
400
401 - builder:
402     name: 'deploy'
403     builders:
404         - shell: |
405             #!/bin/bash
406             set -o errexit
407             set -o nounset
408             set -o pipefail
409
410             # log info to console
411             echo "Startint the deployment. This could take some time..."
412             echo "--------------------------------------------------------"
413             echo
414
415             # cleanup first
416             sudo $WORKSPACE/$INSTALLER/ci/clean.sh -base_config $WORKSPACE/$INSTALLER/ci/inventory/lf_pod2_ksgen_settings.yml
417
418             # and then initiate deployment
419             sudo $WORKSPACE/$INSTALLER/ci/deploy.sh -base_config $WORKSPACE/$INSTALLER/ci/inventory/lf_pod2_ksgen_settings.yml
420
421             echo
422             echo "--------------------------------------------------------"
423             echo "Done!"
424
425 - builder:
426     name: 'upload-artifact'
427     builders:
428         - shell: |
429             #!/bin/bash
430             set -o errexit
431             set -o nounset
432             set -o pipefail
433
434             # log info to console
435             echo "Uploading artifact. This could take some time..."
436             echo "--------------------------------------------------------"
437             echo
438
439             # list the build output
440             ls -al $BUILD_DIRECTORY
441
442             # source the opnfv.properties to get ARTIFACT_VERSION
443             source $WORKSPACE/opnfv.properties
444
445             # copy artifact property file as latest.properties
446             # so we can directly get info regarding latest artifact
447             /bin/cp -f $WORKSPACE/opnfv.properties $WORKSPACE/latest.properties
448
449             # upload artifact and additional files to google storage
450             gsutil cp $BUILD_DIRECTORY/OPNFV-CentOS-7-x86_64-$OPNFV_ARTIFACT_VERSION.iso gs://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.iso > gsutil.iso.log 2>&1
451             gsutil cp $WORKSPACE/opnfv.properties gs://$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.properties > gsutil.properties.log 2>&1
452             gsutil cp $WORKSPACE/latest.properties gs://$GS_URL/latest.properties gsutil.latest.log 2>&1
453
454             echo
455             echo "--------------------------------------------------------"
456             echo "Done!"