blob: 816b66cc26abb1acd41c120a49db2ff9cfa34c30 [file] [log] [blame]
tierno87858ca2018-10-08 16:30:15 +02001# Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
10# implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
Mike Marchettic81bb2c2018-04-25 14:54:42 -040014properties([
15 parameters([
16 string(defaultValue: env.BRANCH_NAME, description: '', name: 'GERRIT_BRANCH'),
17 string(defaultValue: 'osm/common', description: '', name: 'GERRIT_PROJECT'),
18 string(defaultValue: env.GERRIT_REFSPEC, description: '', name: 'GERRIT_REFSPEC'),
19 string(defaultValue: env.GERRIT_PATCHSET_REVISION, description: '', name: 'GERRIT_PATCHSET_REVISION'),
20 string(defaultValue: 'https://osm.etsi.org/gerrit', description: '', name: 'PROJECT_URL_PREFIX'),
21 booleanParam(defaultValue: false, description: '', name: 'TEST_INSTALL'),
22 string(defaultValue: 'artifactory-osm', description: '', name: 'ARTIFACTORY_SERVER'),
23 ])
24])
25
26def devops_checkout() {
27 dir('devops') {
28 git url: "${PROJECT_URL_PREFIX}/osm/devops", branch: params.GERRIT_BRANCH
29 }
30}
31
32node('docker') {
33 checkout scm
34 devops_checkout()
35
36 ci_stage_2 = load "devops/jenkins/ci-pipelines/ci_stage_2.groovy"
37 ci_stage_2.ci_pipeline( 'common',
38 params.PROJECT_URL_PREFIX,
39 params.GERRIT_PROJECT,
40 params.GERRIT_BRANCH,
41 params.GERRIT_REFSPEC,
42 params.GERRIT_PATCHSET_REVISION,
43 params.TEST_INSTALL,
44 params.ARTIFACTORY_SERVER)
45}