From baac0d4a3f41af0b07c4ed85bc2501f531b8863c Mon Sep 17 00:00:00 2001 From: Adrien Dorsaz Date: Wed, 3 Jun 2020 06:58:30 +0200 Subject: [PATCH] gitlab-ci: create coverage artifacts only on buster container --- .gitlab-ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 80d3e5f..26c6ce5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,9 +23,6 @@ stages: script: - python3-coverage run --append --source ./ -m unittest -v tests.unit_test_acme_dns_tiny - artifacts: - paths: - - .coverage only: - merge_requests - master @@ -37,9 +34,6 @@ stages: tests.staging_test_acme_dns_tiny tests.staging_test_acme_account_rollover tests.staging_test_acme_account_deactivate - artifacts: - paths: - - .coverage only: - merge_requests - master @@ -90,6 +84,9 @@ stretch-ut: buster-ut: extends: .unit_test image: acme-dns-tiny:buster-slim + artifacts: + paths: + - .coverage jessie-le-staging: extends: .lets_encrypt_staging -- GitLab