blob: 2ef84764ee1ea80137ab61724dc0efeab65ee384 [file] [log] [blame]
alshabibf6c93b92016-10-22 17:55:04 +02001node('build') {
alshabib16bdc1a2016-10-18 14:31:32 +01002 stage 'Checkout cord repo'
alshabibf6c93b92016-10-22 17:55:04 +02003 checkout([$class: 'RepoScm', currentBranch: true, manifestRepositoryUrl: 'https://gerrit.opencord.org/manifest', quiet: true])
alshabib16bdc1a2016-10-18 14:31:32 +01004
5 dir ('incubator/voltha') {
6 try {
7 stage 'Bring up voltha dev vm'
8 sh 'vagrant up voltha'
9
khenaidoo3a7a4e52017-07-14 15:31:46 -040010 stage 'Remove the pre-created venv-linux'
11 sh 'vagrant ssh -c "rm -rf /cord/incubator/voltha/venv-linux"'
12
khenaidoocbff06b2017-08-22 16:26:32 -040013 stage 'Use the jenkins voltha.yml file'
14 sh 'vagrant ssh -c "cp /cord/incubator/voltha/voltha/voltha.jenkins.yml /cord/incubator/voltha/voltha/voltha.yml"'
15
alshabib16bdc1a2016-10-18 14:31:32 +010016 stage 'Build voltha'
khenaidoofe874ae2017-07-14 18:07:27 -040017 sh 'vagrant ssh -c "cd /cord/incubator/voltha && source env.sh && make fetch-jenkins && make jenkins" voltha'
alshabib16bdc1a2016-10-18 14:31:32 +010018
19 stage 'Bring up voltha containers'
khenaidoofe874ae2017-07-14 18:07:27 -040020 sh 'vagrant ssh -c "cd /cord/incubator/voltha && source env.sh && docker-compose -f compose/docker-compose-docutests.yml up -d" voltha'
alshabib16bdc1a2016-10-18 14:31:32 +010021
alshabib428c9422016-10-24 17:30:55 -070022 stage 'Run Integration Tests'
khenaidoo1243ee92017-07-17 15:54:06 -040023 sh 'vagrant ssh -c "cd /cord/incubator/voltha && source env.sh && make jenkins-test" voltha'
alshabib428c9422016-10-24 17:30:55 -070024
alshabib16bdc1a2016-10-18 14:31:32 +010025 currentBuild.result = 'SUCCESS'
alshabib428c9422016-10-24 17:30:55 -070026 slackSend channel: '#voltha', color: 'good', message: "${env.JOB_NAME} (${env.BUILD_NUMBER}) Build success.\n${env.BUILD_URL}"
alshabib16bdc1a2016-10-18 14:31:32 +010027 } catch (err) {
28 currentBuild.result = 'FAILURE'
alshabib4ba19892016-10-22 18:11:22 +020029 slackSend channel: '#voltha', color: 'danger', message: ":dizzy_face: Build failed ${env.JOB_NAME} (${env.BUILD_NUMBER})\n${env.BUILD_URL}"
alshabib16bdc1a2016-10-18 14:31:32 +010030 } finally {
31 sh 'vagrant destroy -f voltha'
32 }
33 echo "RESULT: ${currentBuild.result}"
34 }
35}