From a3cce35881882a96af546db58eaddc6ef973a92f Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Wed, 11 May 2022 17:51:43 +0200 Subject: [PATCH] Update GitLab CI to conform with the changes to artifacts collection See: https://docs.gitlab.com/ee/ci/yaml/artifacts_reports.html#artifactsreportscobertura-removed --- .gitlab-ci.yml | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9a70b08c..8b4fe87e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,7 +55,9 @@ test-3.8-core: artifacts: when: always reports: - cobertura: coverage.xml + coverage_report: + coverage_format: cobertura + path: coverage.xml test-3.9-core: <<: *only-default @@ -65,7 +67,9 @@ test-3.9-core: artifacts: when: always reports: - cobertura: coverage.xml + coverage_report: + coverage_format: cobertura + path: coverage.xml test-3.10-core: <<: *only-default @@ -75,7 +79,9 @@ test-3.10-core: artifacts: when: always reports: - cobertura: coverage.xml + coverage_report: + coverage_format: cobertura + path: coverage.xml test-3.11-core: <<: *only-default @@ -85,7 +91,9 @@ test-3.11-core: artifacts: when: always reports: - cobertura: coverage.xml + coverage_report: + coverage_format: cobertura + path: coverage.xml allow_failure: true test-3.8-all: @@ -96,7 +104,9 @@ test-3.8-all: artifacts: when: always reports: - cobertura: coverage.xml + coverage_report: + coverage_format: cobertura + path: coverage.xml test-3.9-all: <<: *only-default @@ -106,7 +116,9 @@ test-3.9-all: artifacts: when: always reports: - cobertura: coverage.xml + coverage_report: + coverage_format: cobertura + path: coverage.xml test-3.10-all: <<: *only-default @@ -116,7 +128,9 @@ test-3.10-all: artifacts: when: always reports: - cobertura: coverage.xml + coverage_report: + coverage_format: cobertura + path: coverage.xml test-3.11-all: <<: *only-default @@ -126,7 +140,9 @@ test-3.11-all: artifacts: when: always reports: - cobertura: coverage.xml + coverage_report: + coverage_format: cobertura + path: coverage.xml allow_failure: true deploy_production: