00d7f9ba0ec6a49fd70c783d58c39a73270d1104
[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         - string:
175             name: INSTALLER
176             default: '{installer}'
177             description: "Installer to use."
178         - string:
179             name: BUILD_DIRECTORY
180             default: $WORKSPACE/build_output
181             description: "Directory where the build artifact will be located upon the completion of the build."
182         - string:
183             name: CACHE_DIRECTORY
184             default: '$HOME/opnfv/cache/genesis-{installer}'
185         - string:
186             name: GS_URL
187             default: 'artifacts.opnfv.org/genesis/{installer}'
188             description: "URL to Google Storage."
189         - string:
190             name: GIT_BASE
191             default: https://gerrit.opnfv.org/gerrit/genesis
192         - string:
193             name: GERRIT_BRANCH
194             default: origin/master
195             description: "Branch to build, deploy and test."
196         - string:
197             name: GERRIT_REFSPEC
198             default: refs/heads/master
199             description: "Refspec to retrieve."
200
201     scm:
202         - git:
203             skip-tag: true
204             url: $GIT_BASE
205             branches:
206                 - $GERRIT_BRANCH
207             refspec: $GERRIT_REFSPEC
208
209     triggers:
210         - pollscm: '@midnight'
211
212     logrotate:
213         daysToKeep: 30
214         numToKeep: 10
215         artifactDaysToKeep: -1
216         artifactNumToKeep: -1
217
218     builders:
219         - 'daily-master'
220
221
222 - job-template:
223     name: 'genesis-{installer}-build'
224
225     project-type: freestyle
226
227     node: ericsson-build
228
229     logrotate:
230         daysToKeep: 30
231         numToKeep: 10
232         artifactDaysToKeep: -1
233         artifactNumToKeep: -1
234
235     parameters:
236         - genesis-parameters:
237             installer: '{installer}'
238         - string:
239             name: EXTRA_PARAM
240             default: 'extra_value'
241             description: "Installer to use."
242         - string:
243             name: INSTALLER
244             default: 'overriden_value'
245             description: "Installer to use."
246
247     scm:
248         - git:
249             skip-tag: true
250             url: $GIT_BASE
251             branches:
252                 - $GERRIT_BRANCH
253             refspec: $GERRIT_REFSPEC
254
255     builders:
256         - 'build'
257
258 - job-template:
259     name: 'genesis-{installer}-deploy'
260
261     project-type: freestyle
262
263     node: opnfv-jump-2
264
265     logrotate:
266         daysToKeep: 30
267         numToKeep: 10
268         artifactDaysToKeep: -1
269         artifactNumToKeep: -1
270
271     parameters:
272         - string:
273             name: INSTALLER
274             default: '{installer}'
275             description: "Installer to use."
276         - string:
277             name: GIT_BASE
278             default: https://gerrit.opnfv.org/gerrit/genesis
279             description: "Used for overriding the GIT URL coming from Global Jenkins configuration in case if the stuff is done on none-LF HW."
280         - string:
281             name: GERRIT_BRANCH
282             default: origin/master
283             description: "Branch to build, deploy and test."
284         - string:
285             name: GERRIT_REFSPEC
286             default: refs/heads/master
287             description: "Refspec to retrieve."
288         - string:
289             name: GS_URL
290             default: 'artifacts.opnfv.org/genesis/{installer}'
291             description: "URL to Google Storage."
292         - string:
293             name: BUILD_DIRECTORY
294             default: $WORKSPACE/build_output
295             description: "Directory where the build artifact will be located upon the completion of the build."
296
297     scm:
298         - git:
299             skip-tag: true
300             url: $GIT_BASE
301             branches:
302                 - $GERRIT_BRANCH
303             refspec: $GERRIT_REFSPEC
304
305     builders:
306         - 'deploy'
307
308 ########################
309 # parameter macros
310 ########################
311 - parameter:
312     name: genesis-parameters
313     parameters:
314         - string:
315             name: INSTALLER
316             default: '{installer}'
317             description: "Installer to use."
318         - string:
319             name: BUILD_DIRECTORY
320             default: $WORKSPACE/build_output
321             description: "Directory where the build artifact will be located upon the completion of the build."
322         - string:
323             name: CACHE_DIRECTORY
324             default: '$HOME/opnfv/cache/genesis-{installer}'
325         - string:
326             name: GIT_BASE
327             default: https://gerrit.opnfv.org/gerrit/genesis
328             description: "Used for overriding the GIT URL coming from Global Jenkins configuration in case if the stuff is done on none-LF HW."
329         - string:
330             name: GERRIT_BRANCH
331             default: origin/master
332             description: "Branch to build, deploy and test."
333         - string:
334             name: GERRIT_REFSPEC
335             default: refs/heads/master
336             description: "Refspec to retrieve."
337         - string:
338             name: GS_URL
339             default: 'artifacts.opnfv.org/genesis/{installer}'
340             description: "URL to Google Storage."
341
342 ########################
343 # builder macros
344 ########################
345 - builder:
346     name: 'verify'
347     builders:
348         - shell: |
349             #!/bin/bash
350             set -o errexit
351             set -o nounset
352             set -o pipefail
353             set -x
354
355             # get the dependencies - temporary fix for RC0
356             [[ -d $WORKSPACE/$INSTALLER/build ]] || mkdir -p $WORKSPACE/$INSTALLER/build
357             cp /home/jenkins/Downloads/opnfv_iso/* $WORKSPACE/$INSTALLER/build/
358
359             # below lines perhaps need to be enabled in order to fetch images from internet
360             # as we are having disk space issues on ericsson-build slave
361             #wget http://ftp.riken.jp/Linux/centos/7.0.1406/isos/x86_64/CentOS-7.0-1406-x86_64-Minimal.iso
362             #wget http://download.virtualbox.org/virtualbox/rpm/fedora/20/x86_64/VirtualBox-4.3-4.3.26_98988_fedora18-1.x86_64.rpm
363             #wget http://repos.duss-janser.ch/vagrant/vagrant_1.7.2_x86_64.rpm
364
365             # do the build
366             cd $WORKSPACE/$INSTALLER/ci
367             ./build.sh $BUILD_DIRECTORY
368
369             # list the build artifacts
370             ls -al $BUILD_DIRECTORY
371
372             # remove the BUILD_DIRECTORY to reclaim some space
373             /bin/rm -rf $BUILD_DIRECTORY
374
375 - builder:
376     name: 'merge'
377     builders:
378         - shell: |
379             #!/bin/bash
380             set -o errexit
381             set -o nounset
382             set -o pipefail
383             set -x
384
385             # get the dependencies - temporary fix for RC0
386             [[ -d $WORKSPACE/$INSTALLER/build ]] || mkdir -p $WORKSPACE/$INSTALLER/build
387             cp /home/jenkins/Downloads/opnfv_iso/* $WORKSPACE/$INSTALLER/build/
388
389             # below lines perhaps need to be enabled in order to fetch images from internet
390             # as we are having disk space issues on ericsson-build slave
391             #wget http://ftp.riken.jp/Linux/centos/7.0.1406/isos/x86_64/CentOS-7.0-1406-x86_64-Minimal.iso
392             #wget http://download.virtualbox.org/virtualbox/rpm/fedora/20/x86_64/VirtualBox-4.3-4.3.26_98988_fedora18-1.x86_64.rpm
393             #wget http://repos.duss-janser.ch/vagrant/vagrant_1.7.2_x86_64.rpm
394
395             # do the build
396             cd $WORKSPACE/$INSTALLER/ci
397             ./build.sh $BUILD_DIRECTORY
398
399             # list the build artifacts
400             ls -al $BUILD_DIRECTORY
401
402             # remove the BUILD_DIRECTORY to reclaim some space
403             /bin/rm -rf $BUILD_DIRECTORY
404
405 - builder:
406     name: 'daily-master'
407     builders:
408         - shell: |
409             #!/bin/bash
410             set -o errexit
411             set -o nounset
412             set -o pipefail
413             set -x
414
415             # get the dependencies - temporary fix for RC0
416             [[ -d $WORKSPACE/$INSTALLER/build ]] || mkdir -p $WORKSPACE/$INSTALLER/build
417             cp /home/jenkins/Downloads/opnfv_iso/* $WORKSPACE/$INSTALLER/build/
418
419             # below lines perhaps need to be enabled in order to fetch images from internet
420             # as we are having disk space issues on ericsson-build slave
421             #wget http://ftp.riken.jp/Linux/centos/7.0.1406/isos/x86_64/CentOS-7.0-1406-x86_64-Minimal.iso
422             #wget http://download.virtualbox.org/virtualbox/rpm/fedora/20/x86_64/VirtualBox-4.3-4.3.26_98988_fedora18-1.x86_64.rpm
423             #wget http://repos.duss-janser.ch/vagrant/vagrant_1.7.2_x86_64.rpm
424
425             # do the build
426             cd $WORKSPACE/$INSTALLER/ci
427             ./build.sh -v $BUILD_ID $BUILD_DIRECTORY
428
429         - shell: |
430             #!/bin/bash
431             set -o errexit
432             set -o nounset
433             set -o pipefail
434             set -x
435
436             # list the build artifacts
437             ls -al $BUILD_DIRECTORY
438
439             cd $BUILD_DIRECTORY
440
441             # save information regarding artifact into file
442             (
443                 echo "OPNFV_GIT_URL=$(git config --get remote.origin.url)"
444                 echo "OPNFV_GIT_SHA1=$(git rev-parse HEAD)"
445                 echo "OPNFV_ARTIFACT_URL=$GS_URL/opnfv-$BUILD_ID.iso"
446                 echo "OPNFV_ARTIFACT_MD5SUM=$(md5sum opnfv-$ARTIFACT_VERSION.iso | cut -d' ' -f1)"
447                 echo "OPNFV_BUILD_URL=$BUILD_URL"
448                 echo "OPNFV_BUILD=OK"
449             ) > opnfv-$BUILD_ID.properties
450
451             # copy artifact property file as latest.properties
452             # so we can directly get info regarding latest artifact
453             /bin/cp -f opnfv-$BUILD_ID.properties latest.properties
454
455             # upload artifact and additional files to google storage
456             gsutil cp OPNFV-CentOS-7-x86_64-$BUILD_ID.iso gs://$GS_URL/opnfv-$BUILD_ID.iso
457             gsutil cp opnfv-$BUILD_ID.properties gs://$GS_URL/opnfv-$BUILD_ID.properties
458             gsutil cp latest.properties gs://$GS_URL/latest.properties
459
460         - shell: |
461             #!/bin/bash
462             set -o errexit
463             set -o nounset
464             set -o pipefail
465             set -x
466
467             # get the latest.properties file in order to get info regarding latest artifact
468             gsutil cp gs://$GS_URL/latest.properties latest.properties
469
470             # check if we got the file
471             [[ -f latest.properties ]] || exit 1
472
473             # source the file so we get OPNFV vars
474             source latest.properties
475
476             # download the file
477             gsutil cp gs://$OPNFV_ARTIFACT_URL $WORKSPACE/opnfv.iso
478
479             # list the file
480             ls -al $WORKSPACE/opnfv.iso
481
482             # remove the BUILD_DIRECTORY and downlaoded artifact to reclaim some space
483             /bin/rm -rf $BUILD_DIRECTORY
484             /bin/rm -rf $WORKSPACE/opnfv.iso
485
486 - builder:
487     name: 'build'
488     builders:
489         - shell: |
490             #!/bin/bash
491             set -o errexit
492             set -o nounset
493             set -o pipefail
494             set -x
495
496             echo "Hello World"
497             env
498
499 - builder:
500     name: 'deploy'
501     builders:
502         - shell: |
503             #!/bin/bash
504             set -o errexit
505             set -o nounset
506             set -o pipefail
507             set -x
508
509             # cleanup first
510             sudo $WORKSPACE/$INSTALLER/ci/clean.sh -base_config $WORKSPACE/$INSTALLER/ci/inventory/lf_pod2_ksgen_settings.yml
511
512             # and then initiate deployment
513             sudo $WORKSPACE/$INSTALLER/ci/deploy.sh -base_config $WORKSPACE/$INSTALLER/ci/inventory/lf_pod2_ksgen_settings.yml