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