This commit is contained in:
Jack-Leung 2020-03-15 21:48:31 -04:00 committed by GitHub
parent db85f23189
commit 2593ed00e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

33
Jenkinsfile vendored
View file

@ -3,22 +3,31 @@ pipeline {
try {
notifyBuild('STARTED')
stage('Build') {
sh './mvnw package'
}
stages {
stage('Build') {
steps {
sh './mvnw package'
}
}
stage('Testing') {
echo 'Testing'
}
stage('Testing') {
steps {
echo 'Testing'
}
}
stage('Package') {
echo 'Staging'
}
stage('Package') {
steps {
echo 'Packaging'
}
}
stage('Deploy') {
echo 'Deploy'
stage('Deploy') {
steps {
echo 'Deploying'
}
}
}
} catch (e) {
// If there was an exception thrown, the build failed
currentBuild.result = "FAILED"