alshabib | f6c93b9 | 2016-10-22 17:55:04 +0200 | [diff] [blame] | 1 | node('build') { |
alshabib | 16bdc1a | 2016-10-18 14:31:32 +0100 | [diff] [blame] | 2 | stage 'Checkout cord repo' |
alshabib | f6c93b9 | 2016-10-22 17:55:04 +0200 | [diff] [blame] | 3 | checkout([$class: 'RepoScm', currentBranch: true, manifestRepositoryUrl: 'https://gerrit.opencord.org/manifest', quiet: true]) |
alshabib | 16bdc1a | 2016-10-18 14:31:32 +0100 | [diff] [blame] | 4 | |
| 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 | |
alshabib | 428c942 | 2016-10-24 17:30:55 -0700 | [diff] [blame] | 16 | stage 'Run Integration Tests' |
| 17 | sh 'vagrant ssh -c "cd /voltha && source env.sh && make itest" voltha' |
| 18 | |
alshabib | 16bdc1a | 2016-10-18 14:31:32 +0100 | [diff] [blame] | 19 | currentBuild.result = 'SUCCESS' |
alshabib | 428c942 | 2016-10-24 17:30:55 -0700 | [diff] [blame] | 20 | slackSend channel: '#voltha', color: 'good', message: "${env.JOB_NAME} (${env.BUILD_NUMBER}) Build success.\n${env.BUILD_URL}" |
alshabib | 16bdc1a | 2016-10-18 14:31:32 +0100 | [diff] [blame] | 21 | } catch (err) { |
| 22 | currentBuild.result = 'FAILURE' |
alshabib | 4ba1989 | 2016-10-22 18:11:22 +0200 | [diff] [blame] | 23 | slackSend channel: '#voltha', color: 'danger', message: ":dizzy_face: Build failed ${env.JOB_NAME} (${env.BUILD_NUMBER})\n${env.BUILD_URL}" |
alshabib | 16bdc1a | 2016-10-18 14:31:32 +0100 | [diff] [blame] | 24 | } finally { |
| 25 | sh 'vagrant destroy -f voltha' |
| 26 | } |
| 27 | echo "RESULT: ${currentBuild.result}" |
| 28 | } |
| 29 | } |