Update Jenkinsfile

This commit is contained in:
Pam 2020-04-15 19:55:50 -04:00 committed by GitHub
parent 07a8e3e0fa
commit 4a7fc44c96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

19
Jenkinsfile vendored
View file

@ -1,10 +1,29 @@
pipeline { pipeline {
agent any agent any
options {
skipStagesAfterUnstable()
}
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
echo 'Building'
sh './mvnw package' sh './mvnw package'
} }
} }
stage('Test') {
steps {
echo 'Testing'
}
}
stage('Package') {
steps {
echo 'Package'
}
}
stage('Deploy') {
steps {
echo 'Deploying'
}
}
} }
} }