First try to create a jenkins pipeline

This commit is contained in:
Jan Christian Grünhage 2017-04-22 16:50:20 +02:00
parent 204829ac5b
commit db6411a451
Signed by: jcgruenhage
GPG key ID: 321A67D9EE8BC3E1

12
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,12 @@
pipeline {
agent {
docker 'gradle'
}
stages {
stage('Build') {
echo 'Building..'
sh 'gradle build --info'
}
}
}