Update Jenkinsfile

This commit is contained in:
Firassawan 2020-03-09 17:46:24 -04:00 committed by GitHub
parent e4fc61e2ff
commit 9309fb7173
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
Jenkinsfile vendored
View file

@ -1,9 +1,14 @@
pipeline {
agent any
stages {
stage('No-op') {
stage('Build') {
steps {
sh 'ls'
sh './mvnw package'
}
}
stage('test') {
steps {
sh './mvnw package'
}
}
}