Adding simple jenkinsfile.
parent
1ba99edce0
commit
f4f5c44429
|
@ -0,0 +1,12 @@
|
||||||
|
pipeline {
|
||||||
|
agent any;
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
def proc = "gradlew build".execute()
|
||||||
|
println proc.text
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue