add node specifier to 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 stage_2') {
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         println("TEST_INSTALL = ${params.TEST_INSTALL}")
51         // callout to stage_2.  This is a multi-branch pipeline.
52         upstream_job_name = "${mdg}-stage_2/${GERRIT_BRANCH}"
53
54         stage_2_result = build job: "${upstream_job_name}", parameters: downstream_params, propagate: true
55         if (stage_2_result.getResult() != 'SUCCESS') {
56             project = stage_2_result.getProjectName()
57             build = stage_2_result.getNumber()
58             error("${project} build ${build} failed")
59         }
60     }
61 }