diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 714c35d9d0a1de40e86c08184507dc733e53f1d1..90effd8588932aca1b1ff6591ccceeda1854908e 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