Rewriting jenkinsfile to suit new makefile

This commit is contained in:
Matthew Baggett 2019-06-24 17:20:22 +02:00
parent d4cc7942d4
commit 1927fcb420

3
Jenkinsfile vendored
View file

@ -9,7 +9,6 @@ pipeline {
steps {
sh 'printenv'
telegramSend "Pipeline STARTED: `${env.JOB_NAME}`\n\nAuthor: `${env.GIT_AUTHOR_NAME} <${env.GIT_AUTHOR_EMAIL}>`\nBuild Number: ${env.BUILD_NUMBER}\n\n${env.RUN_DISPLAY_URL}"
sh 'make prepare'
}
}
stage('Build Marshall') {
@ -18,6 +17,7 @@ pipeline {
agent { node { label 'x86' } }
when { not { branch 'master' } }
steps {
sh 'make prepare'
sh 'make build-marshall'
}
}
@ -25,6 +25,7 @@ pipeline {
agent { node { label 'x86' } }
when { branch 'master' }
steps {
sh 'make prepare'
sh 'make build-marshall'
sh 'make push-marshall'
}