From d0f3acb1bdac33307c2774c8dac77ebda8f97a26 Mon Sep 17 00:00:00 2001 From: Florent Pruvost <florent.pruvost@inria.fr> Date: Tue, 10 Oct 2017 10:10:23 +0200 Subject: [PATCH] fix coverage archives --- .gitlab-ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb9a9151a..b710f488b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,7 @@ build_starpu: stage: build artifacts: name: starpu_build - expire_in: 42 minutes + expire_in: 48 hours paths: - build - chameleon-build.log @@ -26,7 +26,7 @@ build_quark: stage: build artifacts: name: quark_build - expire_in: 42 minutes + expire_in: 48 hours paths: - build - chameleon-build.log @@ -45,7 +45,7 @@ test_starpu: - build_starpu artifacts: name: starpu_test - expire_in: 42 minutes + expire_in: 48 hours paths: - coverage_starpu.tar.bz2 script: @@ -60,7 +60,7 @@ test_quark: - build_quark artifacts: name: starpu_test - expire_in: 42 minutes + expire_in: 48 hours paths: - coverage_quark.tar.bz2 script: @@ -87,7 +87,8 @@ sonar: - sonar.log script: - source .gitlab-ci-env.sh - - tar xvjf coverage.tar.bz2 + - tar xvjf coverage_starpu.tar.bz2 + - tar xvjf coverage_quark.tar.bz2 - ./tools/analysis.sh only: - master -- GitLab