Added steps

This commit is contained in:
Jan Christian Grünhage 2017-04-22 16:56:05 +02:00
parent 62f946a957
commit a22c7a73d6
Signed by: jcgruenhage
GPG key ID: 321A67D9EE8BC3E1

5
Jenkinsfile vendored
View file

@ -5,7 +5,10 @@ pipeline {
stages {
stage('Build') {
sh 'gradle build --info'
steps {
echo 'Building..'
sh 'gradle build --info'
}
}
}
}