Merge "updates for R3 packaging improvements SO and UI do not have to share build...
[osm/devops.git] / jenkins / ci-pipelines / ci_stage_1.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 Get_MDG(project) {
19     // split the project.
20     def values = project.split('/')
21     if ( values.size() > 1 ) {
22         return values[1]
23     }
24     // no prefix, likely just the project name then
25     return project
26 }
27
28 node("${params.NODE}") {
29
30     mdg = Get_MDG("${GERRIT_PROJECT}")
31     println("MDG is ${mdg}")
32
33     if ( params.PROJECT_URL_PREFIX == null )
34     {
35         params.PROJECT_URL_PREFIX  = 'https://osm.etsi.org/gerrit'
36     }
37
38     stage('downstream') {
39         // pipeline running from gerrit trigger.
40         // kickoff the downstream multibranch pipeline
41         def downstream_params = [
42             string(name: 'GERRIT_BRANCH', value: GERRIT_BRANCH),
43             string(name: 'GERRIT_PROJECT', value: GERRIT_PROJECT),
44             string(name: 'GERRIT_REFSPEC', value: GERRIT_REFSPEC),
45             string(name: 'GERRIT_PATCHSET_REVISION', value: GERRIT_PATCHSET_REVISION),
46             string(name: 'PROJECT_URL_PREFIX', value: params.PROJECT_URL_PREFIX),
47             booleanParam(name: 'TEST_INSTALL', value: params.TEST_INSTALL),
48         ]
49
50         stage_name = "stage_2"
51         if ( params.STAGE )
52         {
53             // go directly to stage 3 (osm system)
54             stage_name = "stage_3"
55             mdg = "osm"
56             if ( ! params.TEST_INSTALL )
57             {
58                 println("disabling stage_3 invocation")
59                 return
60             }
61         }
62         println("TEST_INSTALL = ${params.TEST_INSTALL}")
63         // callout to stage_2.  This is a multi-branch pipeline.
64         upstream_job_name = "${mdg}-${stage_name}/${GERRIT_BRANCH}"
65
66         stage_2_result = build job: "${upstream_job_name}", parameters: downstream_params, propagate: true
67         if (stage_2_result.getResult() != 'SUCCESS') {
68             project = stage_2_result.getProjectName()
69             build = stage_2_result.getNumber()
70             error("${project} build ${build} failed")
71         }
72     }
73 }