Merge branch 'v2.0'
[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,build_system) {
30     println("build_system = ${build_system}")
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     container_name = "${project}-${branch}".toLowerCase()
42
43     stage('Docker-Build') {
44         sh "docker build -t ${container_name} ."
45     }
46
47     withDockerContainer("${container_name}") {
48         stage('Docker-Setup') {
49             sh '''
50                groupadd -o -g $(id -g) -r jenkins
51                useradd -o -u $(id -u) --create-home -r -g  jenkins jenkins
52                '''
53         }
54         stage('Test') {
55             sh 'devops-stages/stage-test.sh'
56         }
57         stage('Build') {
58             sh(returnStdout:true,  script: 'devops-stages/stage-build.sh').trim()
59         }
60     }
61
62     stage('Archive') {
63         sh(returnStdout:true,  script: 'devops-stages/stage-archive.sh').trim()
64         ci_helper.archive(mdg,branch,'untested')
65     }
66
67     if ( build_system ) {
68
69         stage('Build System') {
70             def downstream_params_stage_3 = [
71                 string(name: 'GERRIT_BRANCH', value: "${branch}"),
72                 string(name: 'UPSTREAM_JOB_NAME', value: "${JOB_NAME}" ),
73                 string(name: 'UPSTREAM_JOB_NUMBER', value: "${BUILD_NUMBER}" ),
74             ]
75
76             // callout to stage_3.  This is the system build
77             result = build job: "osm-stage_3/${branch}", parameters: downstream_params_stage_3, propagate: true
78             if (result.getResult() != 'SUCCESS') {
79                 project = result.getProjectName()
80                 build = result.getNumber()
81                 error("${project} build ${build} failed")
82             }
83         }
84     }
85
86 }
87
88 return this