From 62de1649f6148f8b5e7a89ef50a70d3d590c8036 Mon Sep 17 00:00:00 2001 From: Mikael Salson Date: Tue, 3 Jul 2018 16:02:46 +0200 Subject: [PATCH] .gitlab-ci.yml: Move coverage artifacts at the root They are thus more easily accessible through Gitlab interface --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 15784f595..4f1311ce5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -82,10 +82,12 @@ test_algo_shouldvdj: algo_coverage: stage: coverage coverage: /^\s*lines\.*:\s+([0-9.]+\%)/ - script: make -C algo lcov_reports + script: + - make -C algo lcov_reports + - mv algo/reports/ coverage artifacts: paths: - - algo/reports/ + - coverage/ only: - /^feature-.*a.*\/.*$/ -- GitLab