c433c14422819959df42a835fb1c8a443aa7fe8b
[osm/devops.git] / jenkins / ci-pipelines / ci_stage_2.groovy
1 /* Copyright 2017 Sandvine
2  *
3  * All Rights Reserved.
4  *
5  *   Licensed under the Apache License, Version 2.0 (the "License"); you may
6  *   not use this file except in compliance with the License. You may obtain
7  *   a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *   Unless required by applicable law or agreed to in writing, software
12  *   distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13  *   WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14  *   License for the specific language governing permissions and limitations
15  *   under the License.
16  */
17
18 def project_checkout(url_prefix,project,refspec,revision) {
19     // checkout the project
20     // this is done automaticaly by the multibranch pipeline plugin
21     // git url: "${url_prefix}/${project}"
22
23     sh "git fetch origin ${refspec}"
24     if (GERRIT_PATCHSET_REVISION.size() > 0 ) {
25         sh "git checkout -f ${revision}"
26     }
27 }
28
29 def ci_pipeline(mdg,url_prefix,project,branch,refspec,revision,do_stage_3,artifactory_server,docker_args="",do_stage_4=false) {
30     println("do_stage_3= ${do_stage_3}")
31     ci_helper = load "devops/jenkins/ci-pipelines/ci_helper.groovy"
32
33     stage('Prepare') {
34         sh 'env'
35     }
36
37     stage('Checkout') {
38         project_checkout(url_prefix,project,refspec,revision)
39     }
40
41     stage('License Scan') {
42       if (!JOB_NAME.contains('merge')) {
43         sh "devops/tools/license_scan.sh"
44       } 
45       else {
46         println("skip the scan for merge")
47       }
48     }
49
50     container_name = "${project}-${branch}".toLowerCase()
51
52     stage('Docker-Build') {
53         sh '''
54            echo RUN groupadd -o -g $(id -g) -r jenkins >> Dockerfile
55            echo RUN useradd -o -u $(id -u) --create-home -r -g  jenkins jenkins >> Dockerfile
56            '''
57         sh "docker build -t ${container_name} ."
58     }
59
60     withDockerContainer(image: "${container_name}", args: docker_args) {
61         stage('Test') {
62             sh 'devops-stages/stage-test.sh'
63             if (fileExists('coverage.xml')) {
64                 cobertura coberturaReportFile: 'coverage.xml'
65             }
66             if (fileExists('nosetests.xml')) {
67                 junit 'nosetests.xml'
68             }
69         }
70         stage('Build') {
71             sh(returnStdout:true,  script: 'devops-stages/stage-build.sh').trim()
72         }
73         stage('Archive') {
74             sh "mkdir -p changelog"
75             sh "devops/tools/generatechangelog-pipeline.sh > changelog/changelog-${mdg}.html"
76             sh(returnStdout:true,  script: 'devops-stages/stage-archive.sh').trim()
77             ci_helper.archive(artifactory_server,mdg,branch,'untested')
78         }
79     }
80
81     if ( do_stage_3 ) {
82
83         stage('Build System') {
84             def downstream_params_stage_3 = [
85                 string(name: 'GERRIT_BRANCH', value: "${branch}"),
86                 string(name: 'UPSTREAM_JOB_NAME', value: "${JOB_NAME}" ),
87                 string(name: 'UPSTREAM_JOB_NUMBER', value: "${BUILD_NUMBER}" ),
88                 booleanParam(name: 'DO_STAGE_4', value: do_stage_4 )
89             ]
90             stage_3_job = "osm-stage_3"
91             if ( JOB_NAME.contains('merge') ) {
92                 stage_3_job += '-merge'
93             }
94
95             // callout to stage_3. This is the system build
96             result = build job: "${stage_3_job}/${branch}", parameters: downstream_params_stage_3, propagate: true
97             if (result.getResult() != 'SUCCESS') {
98                 project = result.getProjectName()
99                 build = result.getNumber()
100                 error("${project} build ${build} failed")
101             }
102         }
103     }
104
105 }
106
107 return this