Update 'Jenkinsfile'
This commit is contained in:
parent
d161a9d145
commit
50324824c8
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
@ -5,13 +5,18 @@ pipeline {
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo 'Building..'
|
||||
sh 'gradle build'
|
||||
withGradle {
|
||||
sh './gradlew build'
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
echo 'Testing...'
|
||||
sh 'gradle test'
|
||||
withGradle {
|
||||
sh './gradlew test'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user