diff --git a/Jenkinsfile b/Jenkinsfile index 3747b5663..db85c0928 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,9 @@ pipeline { } stage('Build') { steps { - echo 'Build..' + echo 'Running build automation' + sh './gradlew build --no-daemon' + archiveArtifacts artifacts: 'dist/trainSchedule.zip' } } stage('Test') {