From 5544bc6caae6ff78392217b2ea8b0a734f54d537 Mon Sep 17 00:00:00 2001 From: Peter Nied Date: Thu, 18 Feb 2021 16:59:33 -0600 Subject: [PATCH] Support for continious integration with Jenkins (#96) Adding jenkinsfile to describe the build / test / deployment process for this repository Signed-off-by: Peter Nied --- Jenkinsfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000000000..4277a82f250f2 --- /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..' + } + } + } +}