Fix Gradle build step in Jenkinsfile
This commit is contained in:
Vendored
+4
-1
@@ -3,7 +3,10 @@ pipeline {
|
|||||||
stages {
|
stages {
|
||||||
stage('Gradle') {
|
stage('Gradle') {
|
||||||
steps {
|
steps {
|
||||||
sh 'bash gradlew build'
|
sh '''
|
||||||
|
chmod +x gradlew
|
||||||
|
./gradlew build
|
||||||
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Archive') {
|
stage('Archive') {
|
||||||
|
|||||||
Reference in New Issue
Block a user