diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..596c3147d --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,19 @@ +pipeline { + agent any + options { + disableConcurrentBuilds() + buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10')) + } + stages { + stage('Build') { + steps { + sh './gradlew clean build' + } + post { + always { + junit 'backend/build/test-results/**/*.xml' + } + } + } + } +} \ No newline at end of file