Rewriting jenkinsfile to suit new makefile
This commit is contained in:
parent
d4cc7942d4
commit
1927fcb420
1 changed files with 2 additions and 1 deletions
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
|
|
@ -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'
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue