Skip to content

Commit

Permalink
[SHIBUI-794]
Browse files Browse the repository at this point in the history
WIP
  • Loading branch information
jj committed Sep 13, 2018
1 parent dcdac35 commit 0b1800f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
pipeline {
agent any
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
stages {
stage('Build') {
steps {
sh './gradlew clean build'
}
post {
always {
junit 'backend/build/test-results/**/*.xml'
}
}
}
}
}

0 comments on commit 0b1800f

Please sign in to comment.