From d4e9ed7b09cf20e347e2f472ae1b7e924aac0895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Vonheiden?= <bjoern.vonheiden@hotmail.de> Date: Wed, 13 May 2020 23:27:05 +0200 Subject: [PATCH] correct gitlab ci file --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 714c35d9d..90effd858 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,7 +34,7 @@ test: artifacts: reports: junit: - - **/build/test-results/test/TEST-*.xml + - "**/build/test-results/test/TEST-*.xml" checkstyle: stage: check @@ -44,7 +44,7 @@ checkstyle: allow_failure: true artifacts: paths: - - */build/reports/checkstyle/main.html + - "*/build/reports/checkstyle/main.html" when: on_failure expire_in: 1 day @@ -56,7 +56,7 @@ pmd: allow_failure: true artifacts: paths: - - */build/reports/pmd/*.html + - "*/build/reports/pmd/*.html" when: on_failure expire_in: 1 day @@ -68,7 +68,7 @@ spotbugs: allow_failure: true artifacts: paths: - - */build/reports/spotbugs/*.html + - "*/build/reports/spotbugs/*.html" when: on_failure expire_in: 1 day -- GitLab