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