From ee5b191804df7a824f25394e6c9c51b7fa5b0643 Mon Sep 17 00:00:00 2001 From: Fadi Imani <fadi.imani.etu@univ-lille.fr> Date: Tue, 2 Apr 2024 04:30:21 +0200 Subject: [PATCH] big project --- .gitlab-ci.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e1bce38..63a704c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,16 +54,16 @@ test: # when: always coverage: - stage: coverage - script: - - gcov -f -b build/* - - lcov --directory build --base-directory . -c -o cov.info - - mkdir report1 - - genhtml cov.info -o report - coverage: '/^\s*lines\S*\s*(\d+(?:\.\d+)?%)\s*/' - when: on_success - dependencies: - - job:test - artifacts: - paths: - - report/ + stage: coverage + script: + - gcov -f -b build/* + - lcov --directory build --base-directory . -c -o cov.info + - mkdir report1 + - genhtml cov.info -o report + coverage: '/^\s*lines\S*\s*(\d+(?:\.\d+)?%)\s*/' + when: on_success + dependencies: + - job:test + artifacts: + paths: + - report/ -- GitLab