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:
parent
afd91d76f9
commit
5544bc6caa
|
@ -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..'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue