Adding simple jenkinsfile.

master
Tomasz Półgrabia 2021-01-23 11:17:40 +01:00
parent 1ba99edce0
commit f4f5c44429
1 changed files with 12 additions and 0 deletions

12
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent any;
stages {
stage('Build') {
steps {
def proc = "gradlew build".execute()
println proc.text
}
}
}
}