playmusicexporter/Jenkinsfile

12 lines
193 B
Plaintext
Raw Normal View History

2017-04-22 14:50:20 +00:00
pipeline {
2017-04-22 15:35:58 +00:00
agent any
2017-04-22 14:50:20 +00:00
stages {
stage('Build') {
2017-04-22 14:56:05 +00:00
steps {
echo 'Building..'
2017-04-22 15:35:03 +00:00
sh './gradlew build --info'
2017-04-22 14:56:05 +00:00
}
2017-04-22 14:50:20 +00:00
}
}
}