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