Fix: Made Glance-fake API more robust in
[osm/vim-emu.git] / Jenkinsfile
1 properties([
2     parameters([
3         string(defaultValue: env.BRANCH_NAME, description: '', name: 'GERRIT_BRANCH'),
4         string(defaultValue: 'osm/vim-emu', description: '', name: 'GERRIT_PROJECT'),
5         string(defaultValue: env.GERRIT_REFSPEC, description: '', name: 'GERRIT_REFSPEC'),
6         string(defaultValue: env.GERRIT_PATCHSET_REVISION, description: '', name: 'GERRIT_PATCHSET_REVISION'),
7         string(defaultValue: 'https://osm.etsi.org/gerrit', description: '', name: 'PROJECT_URL_PREFIX'),
8         booleanParam(defaultValue: false, description: '', name: 'TEST_INSTALL'),
9         string(defaultValue: 'artifactory-osm', description: '', name: 'ARTIFACTORY_SERVER'),
10     ])
11 ])
12
13 def devops_checkout() {
14     dir('devops') {
15         git url: "${PROJECT_URL_PREFIX}/osm/devops", branch: params.GERRIT_BRANCH
16     }
17 }
18
19 node('docker') {
20     checkout scm
21     devops_checkout()
22
23     // vim-emu: We need to use privileged mode, docker.sock, and host pids for the container
24     // to test the emulator. Also needs -u 0:0 (root user inside container).
25     docker_args = "--privileged --pid='host' -v /var/run/docker.sock:/var/run/docker.sock -u 0:0"
26
27     ci_helper = load "devops/jenkins/ci-pipelines/ci_stage_2.groovy"
28     ci_helper.ci_pipeline( 'vim-emu',
29                            params.PROJECT_URL_PREFIX,
30                            params.GERRIT_PROJECT,
31                            params.GERRIT_BRANCH,
32                            params.GERRIT_REFSPEC,
33                            params.GERRIT_PATCHSET_REVISION,
34                            params.TEST_INSTALL,
35                            params.ARTIFACTORY_SERVER,
36                            docker_args)
37 }