Merge "Fixes OVF converter and upload"
[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 --tags"
24     sh "git fetch origin ${refspec}"
25     if (GERRIT_PATCHSET_REVISION.size() > 0 ) {
26         sh "git checkout -f ${revision}"
27     }
28 }
29
30 def ci_pipeline(mdg,url_prefix,project,branch,refspec,revision,do_stage_3,artifactory_server,docker_args="",do_stage_4=false) {
31     println("do_stage_3= ${do_stage_3}")
32     ci_helper = load "devops/jenkins/ci-pipelines/ci_helper.groovy"
33
34     stage('Prepare') {
35         sh 'env'
36     }
37
38     stage('Checkout') {
39         project_checkout(url_prefix,project,refspec,revision)
40     }
41
42     stage('License Scan') {
43       if (!JOB_NAME.contains('merge')) {
44         sh "devops/tools/license_scan.sh"
45       } 
46       else {
47         println("skip the scan for merge")
48       }
49     }
50
51     container_name = "${project}-${branch}".toLowerCase()
52
53     stage('Docker-Build') {
54         sh '''
55            echo RUN groupadd -o -g $(id -g) -r jenkins >> Dockerfile
56            echo RUN useradd -o -u $(id -u) --create-home -r -g  jenkins jenkins >> Dockerfile
57            '''
58         sh "docker build -t ${container_name} ."
59     }
60
61     withDockerContainer(image: "${container_name}", args: docker_args) {
62         stage('Test') {
63             sh 'devops-stages/stage-test.sh'
64             if (fileExists('coverage.xml')) {
65                 cobertura coberturaReportFile: 'coverage.xml'
66             }
67             if (fileExists('nosetests.xml')) {
68                 junit 'nosetests.xml'
69             }
70         }
71         stage('Build') {
72             sh(returnStdout:true,  script: 'devops-stages/stage-build.sh').trim()
73         }
74         stage('Archive') {
75             sh "mkdir -p changelog"
76             sh "devops/tools/generatechangelog-pipeline.sh > changelog/changelog-${mdg}.html"
77             sh(returnStdout:true,  script: 'devops-stages/stage-archive.sh').trim()
78             ci_helper.archive(artifactory_server,mdg,branch,'untested')
79         }
80     }
81
82     if ( do_stage_3 ) {
83
84         stage('Build System') {
85             def downstream_params_stage_3 = [
86                 string(name: 'GERRIT_BRANCH', value: "${branch}"),
87                 string(name: 'UPSTREAM_JOB_NAME', value: "${JOB_NAME}" ),
88                 string(name: 'UPSTREAM_JOB_NUMBER', value: "${BUILD_NUMBER}" ),
89                 booleanParam(name: 'DO_STAGE_4', value: do_stage_4 )
90             ]
91             stage_3_job = "osm-stage_3"
92             if ( JOB_NAME.contains('merge') ) {
93                 stage_3_job += '-merge'
94             }
95
96             // callout to stage_3. This is the system build
97             result = build job: "${stage_3_job}/${branch}", parameters: downstream_params_stage_3, propagate: true
98             if (result.getResult() != 'SUCCESS') {
99                 project = result.getProjectName()
100                 build = result.getNumber()
101                 error("${project} build ${build} failed")
102             }
103         }
104     }
105
106 }
107
108 return this