Skip to content

Commit

Permalink
Merged in SHIBUI-1506 (pull request #393)
Browse files Browse the repository at this point in the history
SHIBUI-1506

Approved-by: Ryan Mathis <rmathis@unicon.net>
  • Loading branch information
dima767 authored and rmathis committed Oct 15, 2019
2 parents b77bd1a + 8250c5c commit d6c9d4e
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions Jenkinsfile-Selenium
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
pipeline {
agent any
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
stages {
stage('Run Selenium tests') {
steps {
sh '''
./gradlew integrationTest -Dselenium.host=jenkins
'''
}
post {
always {
junit 'backend/build/test-results/integrationTest/**/*.xml'
}
}
}
}
post {
failure {
step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: emailextrecipients([[$class: 'CulpritsRecipientProvider'], [$class: 'RequesterRecipientProvider']])])
}
success {
emailext body: '''${SCRIPT, template="groovy-text.template"}''', recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']], subject: '[SHIBUI] Build Success'
}
always {
cleanWs()
}
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

For more information, see `docs`

## Requirements
## Requirements_

* Java 8 (note that ONLY Java 8 is supported at this time; other later versions might work)

Expand Down

0 comments on commit d6c9d4e

Please sign in to comment.