diff --git a/Jenkinsfile b/Jenkinsfile index d19cae2ac..bde811fb4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,23 +17,24 @@ pipeline { } } - stage('Run Selenium tests') { - when { - expression { - return (GIT_BRANCH.startsWith('PR') || GIT_BRANCH.endsWith('-QA')) - } - } - steps { - sh ''' - ./gradlew integrationTest -Dselenium.host=jenkins - ''' - } - post { - always { - junit 'backend/build/test-results/integrationTest/**/*.xml' - } - } - } +# Commented out, for the time being, per SHIBUI-1505 +# stage('Run Selenium tests') { +# when { +# expression { +# return (GIT_BRANCH.startsWith('PR') || GIT_BRANCH.endsWith('-QA')) +# } +# } +# steps { +# sh ''' +# ./gradlew integrationTest -Dselenium.host=jenkins +# ''' +# } +# post { +# always { +# junit 'backend/build/test-results/integrationTest/**/*.xml' +# } +# } +# } stage('Build Docker images') { when {