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 {
|
steps {
|
||||||
sh 'printenv'
|
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}"
|
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') {
|
stage('Build Marshall') {
|
||||||
|
|
@ -18,6 +17,7 @@ pipeline {
|
||||||
agent { node { label 'x86' } }
|
agent { node { label 'x86' } }
|
||||||
when { not { branch 'master' } }
|
when { not { branch 'master' } }
|
||||||
steps {
|
steps {
|
||||||
|
sh 'make prepare'
|
||||||
sh 'make build-marshall'
|
sh 'make build-marshall'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -25,6 +25,7 @@ pipeline {
|
||||||
agent { node { label 'x86' } }
|
agent { node { label 'x86' } }
|
||||||
when { branch 'master' }
|
when { branch 'master' }
|
||||||
steps {
|
steps {
|
||||||
|
sh 'make prepare'
|
||||||
sh 'make build-marshall'
|
sh 'make build-marshall'
|
||||||
sh 'make push-marshall'
|
sh 'make push-marshall'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue