Support for continious integration with Jenkins (#96)

Adding jenkinsfile to describe the build / test / deployment process for this repository

Signed-off-by: Peter Nied <petern@amazon.com>
This commit is contained in:
Peter Nied 2021-02-18 16:59:33 -06:00 committed by Peter Nied
parent afd91d76f9
commit 5544bc6caa
1 changed files with 22 additions and 0 deletions

22
Jenkinsfile vendored Normal file
View File

@ -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..'
}
}
}
}