diff --git a/Jenkinsfile1 b/Jenkinsfile1 new file mode 100644 index 00000000..eefdd80d --- /dev/null +++ b/Jenkinsfile1 @@ -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' + } + } + } +}