diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..25465ba0 --- /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' + } + } + } +}