a5adb9e59a8844d8ee791b6a6e82005a59b1251b
[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 {
29     mdg = Get_MDG("${GERRIT_PROJECT}")
30     println("MDG is ${mdg}")
31
32     if ( params.PROJECT_URL_PREFIX == null )
33     {
34         params.PROJECT_URL_PREFIX  = 'https://osm.etsi.org/gerrit'
35     }
36
37     stage('downstream stage_2') {
38         // pipeline running from gerrit trigger.
39         // kickoff the downstream multibranch pipeline
40         def downstream_params = [
41             string(name: 'GERRIT_BRANCH', value: GERRIT_BRANCH),
42             string(name: 'GERRIT_PROJECT', value: GERRIT_PROJECT),
43             string(name: 'GERRIT_REFSPEC', value: GERRIT_REFSPEC),
44             string(name: 'GERRIT_PATCHSET_REVISION', value: GERRIT_PATCHSET_REVISION),
45             string(name: 'PROJECT_URL_PREFIX', value: params.PROJECT_URL_PREFIX),
46             booleanParam(name: 'TEST_INSTALL', value: params.TEST_INSTALL),
47         ]
48
49         println("TEST_INSTALL = ${params.TEST_INSTALL}")
50         // callout to stage_2.  This is a multi-branch pipeline.
51         upstream_job_name = "${mdg}-stage_2/${GERRIT_BRANCH}"
52
53         stage_2_result = build job: "${upstream_job_name}", parameters: downstream_params, propagate: true
54         if (stage_2_result.getResult() != 'SUCCESS') {
55             project = stage_2_result.getProjectName()
56             build = stage_2_result.getNumber()
57             error("${project} build ${build} failed")
58         }
59     }
60 }