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