diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000000..4277a82f250 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,22 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + sh './gradlew check --no-daemon' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying..' + } + } + } +}