diff options
author | louiz’ <louiz@louiz.org> | 2018-09-17 22:58:48 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-09-17 22:58:48 +0200 |
commit | 6dbac489b76c1434419dcc9c240c8a1b184cd43f (patch) | |
tree | eb7d25fa2b15efb5d3392b3077f4f144ca570665 | |
parent | 88fe1783bfd58ea0dca9e9e507a046e5c982b779 (diff) | |
download | biboumi-6dbac489b76c1434419dcc9c240c8a1b184cd43f.tar.gz biboumi-6dbac489b76c1434419dcc9c240c8a1b184cd43f.tar.bz2 biboumi-6dbac489b76c1434419dcc9c240c8a1b184cd43f.tar.xz biboumi-6dbac489b76c1434419dcc9c240c8a1b184cd43f.zip |
Only save the coverage artifacts in the actual coverage job
-rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9125628..a3bfd4b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -113,15 +113,6 @@ build:no_db_botan: - cd build/ - make check -j$(nproc || echo 1) - make e2e -j$(nproc || echo 1) - artifacts: - expire_in: 2 weeks - paths: - - build/coverage_test_suite/ - - build/coverage_e2e/ - - build/coverage_total/ - - build/coverage_e2e.info - when: always - name: $CI_PROJECT_NAME-test-$CI_JOB_ID test:debian: image: docker.louiz.org/louiz/biboumi/test-debian:latest @@ -139,6 +130,15 @@ test:fedora: - make coverage dependencies: - build:fedora + artifacts: + expire_in: 2 weeks + paths: + - build/coverage_test_suite/ + - build/coverage_e2e/ + - build/coverage_total/ + - build/coverage_e2e.info + when: always + name: $CI_PROJECT_NAME-test-$CI_JOB_ID test:no_udns: image: docker.louiz.org/louiz/biboumi/test-fedora:latest |