Skip to content

Commit

Permalink
Support for continious integration with Jenkins (#96)
Browse files Browse the repository at this point in the history
Adding jenkinsfile to describe the build / test / deployment process for this repository

Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
Peter Nied authored and peternied committed Mar 13, 2021
1 parent afd91d7 commit 5544bc6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -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..'
}
}
}
}

0 comments on commit 5544bc6

Please sign in to comment.