blob: 9a39bd75939b5525c0900a2abe4c99e22e33318f [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
10 stage 'Build voltha'
11 sh 'vagrant ssh -c "cd /voltha && source env.sh && make fetch && make" voltha'
12
13 stage 'Bring up voltha containers'
14 sh 'vagrant ssh -c "cd /voltha && source env.sh && docker-compose -f compose/docker-compose-system-test.yml up -d" voltha'
15
16 currentBuild.result = 'SUCCESS'
alshabib4ba19892016-10-22 18:11:22 +020017 slackSend channel: '#voltha', color: 'warning', message: "${env.JOB_NAME} (${env.BUILD_NUMBER}) Build success.\n${env.BUILD_URL}"
alshabib16bdc1a2016-10-18 14:31:32 +010018 } catch (err) {
19 currentBuild.result = 'FAILURE'
alshabib4ba19892016-10-22 18:11:22 +020020 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 +010021 } finally {
22 sh 'vagrant destroy -f voltha'
23 }
24 echo "RESULT: ${currentBuild.result}"
25 }
26}