diff --git a/Jenkinsfile b/Jenkinsfile index 2b7377ae3a12e23e079dbcc213ee23b3dc16cee0..fbf60bcce7bcbe1f3802556f7e9ecdc6c7ed1882 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -107,36 +107,36 @@ pipeline { } } - // stage('E2E-Test') { - // when { - // branch 'master' - // } - // steps { - // script { - // FAILED_STAGE=env.STAGE_NAME - // } - // container("cypress"){ - // sh 'npm --version' - // dir('goofy-client') { - // sh 'npm install' - // sh 'npm run cypress:version' - // sh 'npm run cypress:ci-run' - // } - // } - // } - // post { - // always { - // publishHTML (target: [ - // allowMissing: false, - // alwaysLinkToLastBuild: false, - // keepAll: true, - // reportDir: 'goofy-client/apps/goofy-e2e/reports', - // reportFiles: 'report.html', - // reportName: "Goofy E2E-Tests" - // ]) - // } - // } - // } + stage('E2E-Test') { + when { + branch 'master' + } + steps { + script { + FAILED_STAGE=env.STAGE_NAME + } + container("cypress"){ + sh 'npm --version' + dir('goofy-client') { + sh 'npm install' + sh 'npm run cypress:version' + sh 'npm run cypress:ci-run' + } + } + } + post { + always { + publishHTML (target: [ + allowMissing: false, + alwaysLinkToLastBuild: false, + keepAll: true, + reportDir: 'goofy-client/apps/goofy-e2e/reports', + reportFiles: 'report.html', + reportName: "Goofy E2E-Tests" + ]) + } + } + } stage('Openshift deploy') { when {