diff --git a/Jenkinsfile b/Jenkinsfile index ccfcd6e233383f6b44657776ab3581caf3ecdf64..3b86a6e609c09ec802be38673f77c61a81584091 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,18 +103,18 @@ pipeline { configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { sh 'mvn --version' sh "mvn -s $MAVEN_SETTINGS -pl -goofy-client clean install spring-boot:build-image -Dspring-boot.build-image.imageName=docker.ozg-sh.de/goofy:${IMAGE_TAG} -Dspring-boot.build-image.publish -Dmaven.wagon.http.retryHandler.count=3" - } - try { - if (env.BRANCH_NAME == 'master') { - dir('goofy-server'){ - withSonarQubeEnv('sonarqube-ozg-sh'){ - sh 'mvn sonar:sonar' + try { + if (env.BRANCH_NAME == 'master') { + dir('goofy-server'){ + withSonarQubeEnv('sonarqube-ozg-sh'){ + sh 'mvn -s $MAVEN_SETTINGS sonar:sonar' + } } - } - } - } catch (Exception e) { - unstable("SonarQube failed") + } + } catch (Exception e) { + unstable("SonarQube failed") + } } } } diff --git a/goofy-client/apps/goofy-e2e/src/integration/main-tests/user-profile/user-profile-icon-in-kommentar-error.e2e-spec.ts b/goofy-client/apps/goofy-e2e/src/integration/main-tests/user-profile/user-profile-icon-in-kommentar-error.e2e-spec.ts index c89cab75ab82964c822d4e234c896d447e30ea94..1f636964705802b0603d123ecee7768e6bfca7da 100644 --- a/goofy-client/apps/goofy-e2e/src/integration/main-tests/user-profile/user-profile-icon-in-kommentar-error.e2e-spec.ts +++ b/goofy-client/apps/goofy-e2e/src/integration/main-tests/user-profile/user-profile-icon-in-kommentar-error.e2e-spec.ts @@ -56,7 +56,7 @@ describe('Kommentar user profile on backend error', () => { }) }) - describe('on status 503', () => { + describe.skip('on status 503', () => { it('should manipulate response on vorgang detail navigation', () => { interceptWithResponse(HttpMethodE2E.GET, '/api/userProfiles/*', { statusCode: 503, body: { issues: [{ messageCode: MessageCodeE2E.SERVICE_UNAVAILABLE }] } });