2d19075c0c0e287afb531462b39dbb7a3ec2becd
[osm/devops.git] / jenkins / ci-pipelines / ci_stage_3.groovy
1 /* Copyright ETSI Contributors and Others
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 properties([
19     parameters([
20         string(defaultValue: env.GERRIT_BRANCH, description: '', name: 'GERRIT_BRANCH'),
21         string(defaultValue: 'system', description: '', name: 'NODE'),
22         string(defaultValue: '', description: '', name: 'BUILD_FROM_SOURCE'),
23         string(defaultValue: 'unstable', description: '', name: 'REPO_DISTRO'),
24         string(defaultValue: '', description: '', name: 'COMMIT_ID'),
25         string(defaultValue: '-stage_2', description: '', name: 'UPSTREAM_SUFFIX'),
26         string(defaultValue: 'pubkey.asc', description: '', name: 'REPO_KEY_NAME'),
27         string(defaultValue: 'release', description: '', name: 'RELEASE'),
28         string(defaultValue: '', description: '', name: 'UPSTREAM_JOB_NAME'),
29         string(defaultValue: '', description: '', name: 'UPSTREAM_JOB_NUMBER'),
30         string(defaultValue: '', description: '', name: 'UPSTREAM_JOB_NUMBER'),
31         string(defaultValue: 'OSMETSI', description: '', name: 'GPG_KEY_NAME'),
32         string(defaultValue: 'artifactory-osm', description: '', name: 'ARTIFACTORY_SERVER'),
33         string(defaultValue: 'osm-stage_4', description: '', name: 'DOWNSTREAM_STAGE_NAME'),
34         string(defaultValue: 'testing-daily', description: '', name: 'DOCKER_TAG'),
35         booleanParam(defaultValue: false, description: '', name: 'SAVE_CONTAINER_ON_FAIL'),
36         booleanParam(defaultValue: false, description: '', name: 'SAVE_CONTAINER_ON_PASS'),
37         booleanParam(defaultValue: true, description: '', name: 'SAVE_ARTIFACTS_ON_SMOKE_SUCCESS'),
38         booleanParam(defaultValue: true, description: '', name: 'DO_STAGE_4'),
39         booleanParam(defaultValue: true, description: '',  name: 'DO_BUILD'),
40         booleanParam(defaultValue: true, description: '', name: 'DO_INSTALL'),
41         booleanParam(defaultValue: true, description: '', name: 'DO_SMOKE'),
42         booleanParam(defaultValue: true, description: '', name: 'DO_DOCKERPUSH'),
43         booleanParam(defaultValue: false, description: '', name: 'SAVE_ARTIFACTS_OVERRIDE'),
44         string(defaultValue: '/home/jenkins/hive/openstack-etsi.rc', description: '', name: 'HIVE_VIM_1'),
45         booleanParam(defaultValue: false, description: '', name: 'DO_ROBOT'),
46         string(defaultValue: 'sanity', description: 'sanity/regression are the options', name: 'TEST_NAME'),
47         string(defaultValue: '/home/jenkins/hive/robot-systest.cfg', description: '', name: 'ROBOT_VIM'),
48         string(defaultValue: '/home/jenkins/hive/kubeconfig.yaml', description: '', name: 'KUBECONFIG'),
49         string(defaultValue: '/home/jenkins/hive/clouds.yaml', description: '', name: 'CLOUDS'),
50         string(defaultValue: 'Default', description: '', name: 'INSTALLER'),
51     ])
52 ])
53
54
55 ////////////////////////////////////////////////////////////////////////////////////////
56 // Helper Functions
57 ////////////////////////////////////////////////////////////////////////////////////////
58 def run_robot_systest(tagName,testName,osmHostname,prometheusHostname,prometheus_port=null,envfile=null,kubeconfig=null,clouds=null,hostfile=null,jujuPassword=null) {
59     tempdir = sh(returnStdout: true, script: "mktemp -d").trim()
60     if ( !envfile )
61     {
62         sh(script: "touch ${tempdir}/env")
63         envfile="${tempdir}/env"
64     }
65     PROMETHEUS_PORT_VAR = ""
66     if ( prometheusPort != null) {
67         PROMETHEUS_PORT_VAR = "--env PROMETHEUS_PORT="+prometheusPort
68     }
69     hostfilemount=""
70     if ( hostfile ) {
71         hostfilemount="-v "+hostfile+":/etc/hosts"
72     }
73
74     JUJU_PASSWORD_VAR = ""
75     if ( jujuPassword != null) {
76         JUJU_PASSWORD_VAR = "--env JUJU_PASSWORD="+jujuPassword
77     }
78
79     try {
80         sh "docker run --env OSM_HOSTNAME=${osmHostname} --env PROMETHEUS_HOSTNAME=${prometheusHostname} ${PROMETHEUS_PORT_VAR} ${JUJU_PASSWORD_VAR} --env-file ${envfile} -v ${clouds}:/etc/openstack/clouds.yaml -v ${kubeconfig}:/root/.kube/config -v ${tempdir}:/robot-systest/reports ${hostfilemount} opensourcemano/tests:${tagName} -c -t ${testName}"
81     } finally {
82         sh "cp ${tempdir}/* ."
83         outputDirectory = sh(returnStdout: true, script: "pwd").trim()
84         println ("Present Directory is : ${outputDirectory}")
85         step([
86             $class : 'RobotPublisher',
87             outputPath : "${outputDirectory}",
88             outputFileName : "*.xml",
89             disableArchiveOutput : false,
90             reportFileName : "report.html",
91             logFileName : "log.html",
92             passThreshold : 0,
93             unstableThreshold: 0,
94             otherFiles : "*.png",
95         ])
96     }
97 }
98
99 def archive_logs(remote) {
100
101     sshCommand remote: remote, command: '''mkdir -p logs'''
102     if (useCharmedInstaller) {
103         sshCommand remote: remote, command: '''
104             for container in `kubectl get pods -n osm | grep -v operator | grep -v NAME| awk '{print $1}'`; do
105                 logfile=`echo $container | cut -d- -f1`
106                 echo "Extracting log for $logfile"
107                 kubectl logs -n osm $container --timestamps=true 2>&1 > logs/$logfile.log
108             done
109         '''
110     } else {
111         sshCommand remote: remote, command: '''
112             for deployment in `kubectl -n osm get deployments | grep -v operator | grep -v NAME| awk '{print $1}'`; do
113                 echo "Extracting log for $deployment"
114                 kubectl -n osm logs deployments/$deployment --timestamps=true --all-containers 2>&1 > logs/$deployment.log
115             done
116         '''
117         sshCommand remote: remote, command: '''
118             for statefulset in `kubectl -n osm get statefulsets | grep -v operator | grep -v NAME| awk '{print $1}'`; do
119                 echo "Extracting log for $statefulset"
120                 kubectl -n osm logs statefulsets/$statefulset --timestamps=true --all-containers 2>&1 > logs/$statefulset.log
121             done
122         '''
123     }
124
125     sh "rm -rf logs"
126     sshCommand remote: remote, command: '''ls -al logs'''
127     sshGet remote: remote, from: 'logs', into: '.', override: true
128     sh "cp logs/* ."
129     archiveArtifacts artifacts: '*.log'
130 }
131
132 def get_value(key, output) {
133     for (String line : output.split( '\n' )) {
134         data = line.split( '\\|' )
135         if (data.length > 1) {
136             if ( data[1].trim() == key ) {
137                 return data[2].trim()
138             }
139         }
140     }
141 }
142
143 ////////////////////////////////////////////////////////////////////////////////////////
144 // Main Script
145 ////////////////////////////////////////////////////////////////////////////////////////
146 node("${params.NODE}") {
147
148     INTERNAL_DOCKER_REGISTRY = 'osm.etsi.org:5050/devops/cicd/'
149     INTERNAL_DOCKER_PROXY = 'http://172.21.1.1:5000'
150     SSH_KEY = '~/hive/cicd_rsa'
151     sh 'env'
152
153     tag_or_branch = params.GERRIT_BRANCH.replaceAll(/\./,"")
154
155     stage("Checkout") {
156         checkout scm
157     }
158
159     ci_helper = load "jenkins/ci-pipelines/ci_helper.groovy"
160
161     def upstream_main_job = params.UPSTREAM_SUFFIX
162
163     // upstream jobs always use merged artifacts
164     upstream_main_job += '-merge'
165     container_name_prefix = "osm-${tag_or_branch}"
166     container_name = "${container_name_prefix}"
167
168     keep_artifacts = false
169     if ( JOB_NAME.contains('merge') ) {
170         container_name += "-merge"
171
172         // On a merge job, we keep artifacts on smoke success
173         keep_artifacts = params.SAVE_ARTIFACTS_ON_SMOKE_SUCCESS
174     }
175     container_name += "-${BUILD_NUMBER}"
176
177     server_id = null
178     http_server_name = null
179     devopstempdir = null
180     useCharmedInstaller = params.INSTALLER.equalsIgnoreCase("charmed")
181
182     try {
183         builtModules = [:]
184 ///////////////////////////////////////////////////////////////////////////////////////
185 // Fetch stage 2 .deb artifacts
186 ///////////////////////////////////////////////////////////////////////////////////////
187         stage("Copy Artifacts") {
188             // cleanup any previous repo
189             sh 'rm -rf repo'
190             dir("repo") {
191                 packageList = []
192                 dir("${RELEASE}") {
193                     RELEASE_DIR = sh(returnStdout:true,  script: 'pwd').trim()
194
195                     // check if an upstream artifact based on specific build number has been requested
196                     // This is the case of a merge build and the upstream merge build is not yet complete (it is not deemed
197                     // a successful build yet). The upstream job is calling this downstream job (with the its build artifiact)
198                     def upstreamComponent=""
199                     if ( params.UPSTREAM_JOB_NAME ) {
200                         println("Fetching upstream job artifact from ${params.UPSTREAM_JOB_NAME}")
201
202                         step ([$class: 'CopyArtifact',
203                                projectName: "${params.UPSTREAM_JOB_NAME}",
204                                selector: [$class: 'SpecificBuildSelector',
205                                buildNumber: "${params.UPSTREAM_JOB_NUMBER}"]
206                               ])
207
208                         upstreamComponent = ci_helper.get_mdg_from_project(
209                             ci_helper.get_env_value('build.env','GERRIT_PROJECT'))
210                         def buildNumber = ci_helper.get_env_value('build.env','BUILD_NUMBER')
211                         dir("$upstreamComponent") {
212                             // the upstream job name contains suffix with the project. Need this stripped off
213                             def project_without_branch = params.UPSTREAM_JOB_NAME.split('/')[0]
214                             def packages = ci_helper.get_archive(params.ARTIFACTORY_SERVER,
215                                 upstreamComponent,
216                                 GERRIT_BRANCH,
217                                 "${project_without_branch} :: ${GERRIT_BRANCH}",
218                                 buildNumber)
219
220                             packageList.addAll(packages)
221                             println("Fetched pre-merge ${params.UPSTREAM_JOB_NAME}: ${packages}")
222                         }
223                     }
224
225                     parallelSteps = [:]
226                     def list = ["RO", "osmclient", "IM", "devops", "MON", "N2VC", "NBI", "common", "LCM", "POL", "NG-UI", "PLA", "tests"]
227                     if (upstreamComponent.length()>0) {
228                         println("Skipping upstream fetch of "+upstreamComponent)
229                         list.remove(upstreamComponent)
230                     }
231                     for (buildStep in list) {
232                         def component = buildStep
233                         parallelSteps[component] = {
234                             dir("$component") {
235                                 println("Fetching artifact for ${component}")
236                                 step ([$class: 'CopyArtifact',
237                                        projectName: "${component}${upstream_main_job}/${GERRIT_BRANCH}"])
238
239                                 // grab the archives from the stage_2 builds (ie. this will be the artifacts stored based on a merge)
240                                 def packages = ci_helper.get_archive(params.ARTIFACTORY_SERVER,
241                                     component,
242                                     GERRIT_BRANCH,
243                                     "${component}${upstream_main_job} :: ${GERRIT_BRANCH}",
244                                     ci_helper.get_env_value('build.env','BUILD_NUMBER'))
245                                 packageList.addAll(packages)
246                                 println("Fetched ${component}: ${packages}")
247                                 sh "rm -rf dists"
248                             }
249                         }
250                     }
251                     parallel parallelSteps
252
253 ///////////////////////////////////////////////////////////////////////////////////////
254 // Create APT repository
255 ///////////////////////////////////////////////////////////////////////////////////////
256                     for ( component in [ "devops" ] ) {
257                         sh "mv ${component}/pool/${component} pool"
258                         sh "dpkg-sig --sign builder -k ${GPG_KEY_NAME} pool/${component}/*"
259                         sh "mkdir -p dists/${params.REPO_DISTRO}/${component}/binary-amd64/"
260                         sh "apt-ftparchive packages pool/${component} > dists/${params.REPO_DISTRO}/${component}/binary-amd64/Packages"
261                         sh "gzip -9fk dists/${params.REPO_DISTRO}/${component}/binary-amd64/Packages"
262                     }
263                     // create and sign the release file
264                     sh "apt-ftparchive release dists/${params.REPO_DISTRO} > dists/${params.REPO_DISTRO}/Release"
265                     sh "gpg --yes -abs -u ${GPG_KEY_NAME} -o dists/${params.REPO_DISTRO}/Release.gpg dists/${params.REPO_DISTRO}/Release"
266
267                     // copy the public key into the release folder
268                     // this pulls the key from the home dir of the current user (jenkins)
269                     sh "cp ~/${REPO_KEY_NAME} 'OSM ETSI Release Key.gpg'"
270                     sh "cp ~/${REPO_KEY_NAME} ."
271                 }
272
273                 // start an apache server to serve up the packages
274                 http_server_name = "${container_name}-apache"
275
276                 pwd = sh(returnStdout:true,  script: 'pwd').trim()
277                 repo_port = sh(script: 'echo $(python -c \'import socket; s=socket.socket(); s.bind(("", 0)); print(s.getsockname()[1]); s.close()\');', returnStdout: true).trim()
278                 repo_base_url = ci_helper.start_http_server(pwd,http_server_name,repo_port)
279                 NODE_IP_ADDRESS=sh(returnStdout: true, script:
280                     "echo ${SSH_CONNECTION} | awk '{print \$3}'").trim()
281             }
282
283             // Unpack devops package into temporary location so that we use it from upstream if it was part of a patch
284             osm_devops_dpkg = sh(returnStdout: true, script: "find ./repo/release/pool/ -name osm-devops*.deb").trim()
285             devopstempdir = sh(returnStdout: true, script: "mktemp -d").trim()
286             println("Extracting local devops package ${osm_devops_dpkg} into ${devopstempdir} for docker build step")
287             sh "dpkg -x ${osm_devops_dpkg} ${devopstempdir}"
288             OSM_DEVOPS="${devopstempdir}/usr/share/osm-devops"
289             // Convert URLs from stage 2 packages to arguments that can be passed to docker build
290             for (remotePath in packageList) {
291                 packageName=remotePath.substring(remotePath.lastIndexOf('/')+1)
292                 packageName=packageName.substring(0,packageName.indexOf('_'))
293                 builtModules[packageName]=remotePath
294             }
295         }
296
297 ///////////////////////////////////////////////////////////////////////////////////////
298 // Build docker containers
299 ///////////////////////////////////////////////////////////////////////////////////////
300         dir(OSM_DEVOPS) {
301             def remote = [:]
302             error = null
303             if ( params.DO_BUILD ) {
304                 withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: 'gitlab-registry',
305                                 usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD']]) {
306                     sh "docker login ${INTERNAL_DOCKER_REGISTRY} -u ${USERNAME} -p ${PASSWORD}"
307                 }
308                 moduleBuildArgs = ""
309                 for (packageName in builtModules.keySet()) {
310                     envName=packageName.replaceAll("-","_").toUpperCase()+"_URL"
311                     moduleBuildArgs += " --build-arg ${envName}=" + builtModules[packageName]
312                 }
313                 dir ("docker") {
314                     stage("Build") {
315                         containerList = sh(returnStdout: true, script:
316                             "find . -name Dockerfile -printf '%h\\n' | sed 's|\\./||'")
317                         containerList=Arrays.asList(containerList.split("\n"))
318                         print(containerList)
319                         parallelSteps = [:]
320                         for (buildStep in containerList) {
321                             def module = buildStep
322                             def moduleName = buildStep.toLowerCase()
323                             def moduleTag = container_name
324                             parallelSteps[module] = {
325                                 dir("$module") {
326                                     sh "docker build -t opensourcemano/${moduleName}:${moduleTag} ${moduleBuildArgs} ."
327                                     println("Tagging ${moduleName}:${moduleTag}")
328                                     sh "docker tag opensourcemano/${moduleName}:${moduleTag} ${INTERNAL_DOCKER_REGISTRY}opensourcemano/${moduleName}:${moduleTag}"
329                                     sh "docker push ${INTERNAL_DOCKER_REGISTRY}opensourcemano/${moduleName}:${moduleTag}"
330                                 }
331                             }
332                         }
333                         parallel parallelSteps
334                     }
335                 }
336             } // if ( params.DO_BUILD )
337
338             if ( params.DO_INSTALL ) {
339 ///////////////////////////////////////////////////////////////////////////////////////
340 // Launch VM
341 ///////////////////////////////////////////////////////////////////////////////////////
342                 stage("Spawn Remote VM") {
343                     println("Launching new VM")
344                     output=sh(returnStdout: true, script: """#!/bin/sh -e
345                         for line in `grep OS ~/hive/robot-systest.cfg | grep -v OS_CLOUD` ; do export \$line ; done
346                         openstack server create --flavor osm.sanity \
347                                                 --image ubuntu18.04 \
348                                                 --key-name CICD \
349                                                 --property build_url="${BUILD_URL}" \
350                                                 --nic net-id=osm-ext \
351                                                 ${container_name}
352                     """).trim()
353
354                     server_id = get_value('id', output)
355
356                     if (server_id == null) {
357                         println("VM launch output: ")
358                         println(output)
359                         throw new Exception("VM Launch failed")
360                     }
361                     println("Target VM is ${server_id}, waiting for IP address to be assigned")
362
363                     IP_ADDRESS = ""
364
365                     while (IP_ADDRESS == "") {
366                         output=sh(returnStdout: true, script: """#!/bin/sh -e
367                             for line in `grep OS ~/hive/robot-systest.cfg | grep -v OS_CLOUD` ; do export \$line ; done
368                             openstack server show ${server_id}
369                         """).trim()
370                         IP_ADDRESS = get_value('addresses', output)
371                     }
372                     IP_ADDRESS = IP_ADDRESS.split('=')[1]
373                     println("Waiting for VM at ${IP_ADDRESS} to be reachable")
374
375                     alive = false
376                     while (! alive) {
377                         output=sh(returnStdout: true, script: "sleep 1 ; nc -zv ${IP_ADDRESS} 22 2>&1 || true").trim()
378                         println("output is [$output]")
379                         alive = output.contains("succeeded")
380                     }
381                     println("VM is ready and accepting ssh connections")
382                 } // stage("Spawn Remote VM")
383
384 ///////////////////////////////////////////////////////////////////////////////////////
385 // Installation
386 ///////////////////////////////////////////////////////////////////////////////////////
387                 stage("Install") {
388                     commit_id = ''
389                     repo_distro = ''
390                     repo_key_name = ''
391                     release = ''
392
393                     if ( params.COMMIT_ID )
394                     {
395                         commit_id = "-b ${params.COMMIT_ID}"
396                     }
397
398                     if ( params.REPO_DISTRO )
399                     {
400                         repo_distro = "-r ${params.REPO_DISTRO}"
401                     }
402
403                     if ( params.REPO_KEY_NAME )
404                     {
405                         repo_key_name = "-k ${params.REPO_KEY_NAME}"
406                     }
407
408                     if ( params.RELEASE )
409                     {
410                         release = "-R ${params.RELEASE}"
411                     }
412
413                     if ( params.REPOSITORY_BASE )
414                     {
415                         repo_base_url = "-u ${params.REPOSITORY_BASE}"
416                     }
417                     else
418                     {
419                         repo_base_url = "-u http://${NODE_IP_ADDRESS}:${repo_port}"
420                     }
421
422                     remote.name = container_name
423                     remote.host = IP_ADDRESS
424                     remote.user = 'ubuntu'
425                     remote.identityFile = SSH_KEY
426                     remote.allowAnyHosts = true
427                     remote.logLevel = 'INFO'
428                     remote.pty = true
429
430                     sshCommand remote: remote, command: """
431                         wget https://osm-download.etsi.org/ftp/osm-9.0-nine/install_osm.sh
432                         chmod +x ./install_osm.sh
433                         sed -i '1 i\\export PATH=/snap/bin:\${PATH}' ~/.bashrc
434                     """
435
436                     if ( useCharmedInstaller ) {
437                         // Use local proxy for docker hub
438                         sshCommand remote: remote, command: '''
439                             sudo snap install microk8s --classic --channel=1.19/stable
440                             sudo sed -i "s|https://registry-1.docker.io|http://172.21.1.1:5000|" /var/snap/microk8s/current/args/containerd-template.toml
441                             sudo systemctl restart snap.microk8s.daemon-containerd.service
442                             sudo snap alias microk8s.kubectl kubectl
443                         '''
444
445                         withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: 'gitlab-registry',
446                                         usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD']]) {
447                             sshCommand remote: remote, command: """
448                                 ./install_osm.sh -y \
449                                     ${repo_base_url} \
450                                     ${repo_key_name} \
451                                     ${release} -r unstable \
452                                     --charmed  \
453                                     --registry ${USERNAME}:${PASSWORD}@${INTERNAL_DOCKER_REGISTRY} \
454                                     --tag ${container_name}
455                             """
456                         }
457                         prometheusHostname = "prometheus."+IP_ADDRESS+".nip.io"
458                         prometheusPort = 80
459                         osmHostname = "nbi."+IP_ADDRESS+".nip.io:443"
460                     } else {
461                         // Run -k8s installer here specifying internal docker registry and docker proxy
462                         withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: 'gitlab-registry',
463                                         usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD']]) {
464                             sshCommand remote: remote, command: """
465                                 ./install_osm.sh -y \
466                                     ${repo_base_url} \
467                                     ${repo_key_name} \
468                                     ${release} -r unstable \
469                                     -d ${USERNAME}:${PASSWORD}@${INTERNAL_DOCKER_REGISTRY} \
470                                     -p ${INTERNAL_DOCKER_PROXY} \
471                                     -t ${container_name}
472                             """
473                         }
474                         prometheusHostname = IP_ADDRESS
475                         prometheusPort = 9091
476                         osmHostname = IP_ADDRESS
477                     }
478                 } // stage("Install")
479             } // if ( params.DO_INSTALL )
480
481 ///////////////////////////////////////////////////////////////////////////////////////
482 // Health check of installed OSM in remote vm
483 ///////////////////////////////////////////////////////////////////////////////////////
484             if ( params.DO_SMOKE ) {
485                 stage("OSM Health") {
486                     stackName = "osm"
487                     sshCommand remote: remote, command: """
488                         /usr/share/osm-devops/installers/osm_health.sh -k -s ${stackName}
489                     """
490                 }
491             }
492
493 ///////////////////////////////////////////////////////////////////////////////////////
494 // Execute Robot tests
495 ///////////////////////////////////////////////////////////////////////////////////////
496             stage_archive = false
497             if ( params.DO_STAGE_4 ) {
498                 try {
499                     stage("System Integration Test") {
500                         if ( params.DO_ROBOT ) {
501                             if( useCharmedInstaller ) {
502                                 tempdir = sh(returnStdout: true, script: "mktemp -d").trim()
503                                 sh(script: "touch ${tempdir}/hosts")
504                                 hostfile="${tempdir}/hosts"
505                                 sh """cat << EOF > ${hostfile}
506 127.0.0.1           localhost
507 ${remote.host}      prometheus.${remote.host}.nip.io nbi.${remote.host}.nip.io
508 EOF"""
509                             } else {
510                                 hostfile=null
511                             }
512
513                             jujuPassword=sshCommand remote: remote, command: """
514                                 echo `juju gui 2>&1 | grep password | cut -d: -f2`
515                             """
516
517                             run_robot_systest(
518                                 container_name,
519                                 params.TEST_NAME,
520                                 osmHostname,
521                                 prometheusHostname,
522                                 prometheusPort,
523                                 params.ROBOT_VIM,
524                                 params.KUBECONFIG,
525                                 params.CLOUDS,
526                                 hostfile,
527                                 jujuPassword)
528                         }
529                     } // stage("System Integration Test")
530                 } finally {
531                     stage("Archive Container Logs") {
532                         // Archive logs to containers_logs.txt
533                         archive_logs(remote)
534                         if ( ! currentBuild.result.equals('UNSTABLE') && ! currentBuild.result.equals('FAILURE')) {
535                             stage_archive = keep_artifacts
536                         } else {
537                             println ("Systest test failed, throwing error")
538                             error = new Exception("Systest test failed")
539                             currentBuild.result = 'FAILURE'
540                             throw error
541                         }
542                     }
543                 }
544             } // if ( params.DO_STAGE_4 )
545
546             if ( params.SAVE_ARTIFACTS_OVERRIDE || stage_archive ) {
547                 stage("Archive") {
548                     sh "echo ${container_name} > build_version.txt"
549                     archiveArtifacts artifacts: "build_version.txt", fingerprint: true
550
551                     // Archive the tested repo
552                     dir("${RELEASE_DIR}") {
553                         ci_helper.archive(params.ARTIFACTORY_SERVER,RELEASE,GERRIT_BRANCH,'tested')
554                     }
555                     if ( params.DO_DOCKERPUSH ) {
556                         stage("Publish to Dockerhub") {
557                             parallelSteps = [:]
558                             for (buildStep in containerList) {
559                                 def module = buildStep
560                                 def moduleName = buildStep.toLowerCase()
561                                 def dockerTag = params.DOCKER_TAG
562                                 def moduleTag = container_name
563
564                                 parallelSteps[module] = {
565                                     dir("$module") {
566                                         sh "docker tag opensourcemano/${moduleName}:${moduleTag} opensourcemano/${moduleName}:${dockerTag}"
567                                         sh "docker push opensourcemano/${moduleName}:${dockerTag}"
568                                     }
569                                 }
570                             }
571                             parallel parallelSteps
572                         }
573
574                         stage("Snap promotion") {
575                             def snaps = ["osmclient"]
576                             sh "snapcraft login --with ~/.snapcraft/config"
577                             for (snap in snaps) {
578                                 channel="latest/"
579                                 if (BRANCH_NAME.startsWith("v")) {
580                                     channel=BRANCH_NAME.substring(1)+"/"
581                                 } else if (BRANCH_NAME!="master") {
582                                     channel+="/"+BRANCH_NAME.replaceAll('/','-')
583                                 }
584                                 track=channel+"edge\\*"
585                                 edge_rev=sh(returnStdout: true,
586                                     script: "snapcraft revisions $snap | " +
587                                     "grep \"$track\" | tail -1 | awk '{print \$1}'").trim()
588                                 print "edge rev is $edge_rev"
589                                 track=channel+"beta\\*"
590                                 beta_rev=sh(returnStdout: true,
591                                     script: "snapcraft revisions $snap | " +
592                                     "grep \"$track\" | tail -1 | awk '{print \$1}'").trim()
593                                 print "beta rev is $beta_rev"
594
595                                 if ( edge_rev != beta_rev ) {
596                                     print "Promoting $edge_rev to beta in place of $beta_rev"
597                                     beta_track=channel+"beta"
598                                     sh "snapcraft release $snap $edge_rev $beta_track"
599                                 }
600                             }
601                         } // stage("Snap promotion")
602                     } // if ( params.DO_DOCKERPUSH )
603                 } // stage("Archive")
604             } // if ( params.SAVE_ARTIFACTS_OVERRIDE || stage_archive )
605         } // dir(OSM_DEVOPS)
606     } finally {
607         if ( params.DO_INSTALL && server_id != null) {
608             delete_vm = true
609             if (error && params.SAVE_CONTAINER_ON_FAIL ) {
610                 delete_vm = false
611             }
612             if (!error && params.SAVE_CONTAINER_ON_PASS ) {
613                 delete_vm = false
614             }
615
616             if ( delete_vm ) {
617                 if (server_id != null) {
618                     println("Deleting VM: $server_id")
619                     sh """#!/bin/sh -e
620                         for line in `grep OS ~/hive/robot-systest.cfg | grep -v OS_CLOUD` ; do export \$line ; done
621                         openstack server delete ${server_id}
622                     """
623                 } else {
624                     println("Saved VM $server_id in ETSI VIM")
625                 }
626             }
627         }
628         if ( http_server_name != null ) {
629             sh "docker stop ${http_server_name} || true"
630             sh "docker rm ${http_server_name} || true"
631         }
632
633         if ( devopstempdir != null ) {
634             sh "rm -rf ${devopstempdir}"
635         }
636     }
637 }