Fix Gradle build step in Jenkinsfile

This commit is contained in:
akastijn 2025-06-29 02:24:29 +02:00
parent 2ef5bd8ba2
commit ee2e026974

5
Jenkinsfile vendored
View File

@ -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') {