diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..7ad5f1c --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,20 @@ +pipeline { + agent any + stages { + stage('Setup') { + steps { + sh './gradlew setupCIWorkspace' + } + } + stage('Compilation') { + steps { + sh './gradlew build' + } + } + stage('Release') { + steps { + echo 'Compilation done.' + } + } + } +} \ No newline at end of file