From 750a753a71d66eb42c7a4c1ca621e72d0b9c765a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Vonheiden?= <bjoern.vonheiden@hotmail.de> Date: Wed, 13 May 2020 19:42:32 +0200 Subject: [PATCH] Continue running test and checks in gitlab pipelines --- .gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 680f78f68..6831f1c57 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,13 +30,13 @@ test: stage: test tags: - exec-docker - script: ./gradlew test + script: ./gradlew test --continue checkstyle: stage: check tags: - exec-docker - script: ./gradlew checkstyle + script: ./gradlew checkstyle --continue allow_failure: true artifacts: paths: @@ -51,12 +51,12 @@ checkstyle: - uc4-workload-generator/build/reports/checkstyle/main.html when: on_failure expire_in: 1 day - + pmd: stage: check tags: - exec-docker - script: ./gradlew pmd + script: ./gradlew pmd --continue allow_failure: true artifacts: paths: @@ -71,12 +71,12 @@ pmd: - uc4-workload-generator/build/reports/pmd/*.html when: on_failure expire_in: 1 day - + spotbugs: stage: check tags: - exec-docker - script: ./gradlew spotbugs + script: ./gradlew spotbugs --continue allow_failure: true artifacts: paths: @@ -116,4 +116,4 @@ spotbugs: variables: - $DOCKERHUB_ORG - $DOCKERHUB_ID - - $DOCKERHUB_PW \ No newline at end of file + - $DOCKERHUB_PW -- GitLab