Skip to content

Commit

Permalink
Merge branch 'master' into feature/SHIBUI-1437-QA
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill Smith committed Oct 15, 2019
2 parents c98ea3d + d6c9d4e commit 331ec96
Show file tree
Hide file tree
Showing 31 changed files with 2,195 additions and 234 deletions.
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
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ class SeleniumSIDETest extends Specification {
'SHIBUI-1391: Regex Validation' | '/SHIBUI-1391.side'
'SHIBUI-1407: Metadata source comparison highlights' | '/SHIBUI-1407-1.side'
'SHIBUI-1407: Metadata provider comparison highlights' | '/SHIBUI-1407-2.side'

}
}

2 changes: 1 addition & 1 deletion backend/src/integration/resources/SHIBUI-1364-1.side
Original file line number Diff line number Diff line change
Expand Up @@ -2257,4 +2257,4 @@
}],
"urls": ["http://localhost:10101/"],
"plugins": []
}
}
Loading

0 comments on commit 331ec96

Please sign in to comment.