Add missing steps block.

This commit is contained in:
Manuele Simi 2019-05-29 22:31:08 -04:00
parent 32d66c6a7e
commit acb2f7067d
1 changed files with 10 additions and 6 deletions

6
Jenkinsfile vendored
View File

@ -36,7 +36,9 @@ echo "Use local repo at ${maven_local_repo_path}"
pipeline { pipeline {
// see https://jenkins.io/doc/book/pipeline/syntax/#agent // see https://jenkins.io/doc/book/pipeline/syntax/#agent
agent { label 'pipeline-agent' } agent {
label 'pipeline-agent'
}
// see https://jenkins.io/doc/book/pipeline/syntax/#environment // see https://jenkins.io/doc/book/pipeline/syntax/#environment
environment { environment {
@ -54,6 +56,7 @@ pipeline {
//see https://jenkins.io/doc/book/pipeline/syntax/#stages //see https://jenkins.io/doc/book/pipeline/syntax/#stages
stages { stages {
stage('clean up before starting') { stage('clean up before starting') {
steps {
script { script {
echo "Create a fresh local repository" echo "Create a fresh local repository"
rm -rf $MAVEN_LOCAL_REPO rm -rf $MAVEN_LOCAL_REPO
@ -61,6 +64,7 @@ pipeline {
echo "Done with local repository" echo "Done with local repository"
} }
} }
}
stage('build core components') { stage('build core components') {
steps { steps {
withMaven(jdk: "${maven_jdk}", mavenLocalRepo: "${maven_local_repo_path}", mavenSettingsFilePath: "${maven_settings_file}") { withMaven(jdk: "${maven_jdk}", mavenLocalRepo: "${maven_local_repo_path}", mavenSettingsFilePath: "${maven_settings_file}") {