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

16
Jenkinsfile vendored
View File

@ -36,7 +36,9 @@ echo "Use local repo at ${maven_local_repo_path}"
pipeline {
// 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
environment {
@ -54,11 +56,13 @@ pipeline {
//see https://jenkins.io/doc/book/pipeline/syntax/#stages
stages {
stage('clean up before starting') {
script {
echo "Create a fresh local repository"
rm -rf $MAVEN_LOCAL_REPO
mkdir -p $MAVEN_LOCAL_REPO
echo "Done with local repository"
steps {
script {
echo "Create a fresh local repository"
rm -rf $MAVEN_LOCAL_REPO
mkdir -p $MAVEN_LOCAL_REPO
echo "Done with local repository"
}
}
}
stage('build core components') {