playmusicexporter/Jenkinsfile

12 lines
193 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
sh './gradlew build --info'
}
}
}
}