playmusicexporter/Jenkinsfile

12 lines
176 B
Groovy

pipeline {
agent {
docker 'gradle'
}
stages {
stage('Build') {
echo 'Building..'
sh 'gradle build --info'
}
}
}