diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..5aaab2d9 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,12 @@ +pipeline { + agent any + stages { + stage ('Build') { + steps { + echo 'Running build automation' + sh './gradlew build --no-daemon' + archiveArtifacts artifacts: 'dist/trainSchedule.zip' + } + } + } +}