Fixing jenkinsfile.

master
Tomasz Półgrabia 2021-01-23 11:20:51 +01:00
parent f4f5c44429
commit 78780b9347
1 changed files with 3 additions and 2 deletions

5
Jenkinsfile vendored
View File

@ -4,8 +4,9 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
def proc = "gradlew build".execute() step {
println proc.text sh("gradlew build")
}
} }
} }
} }