From ed22b695c3707c8867e98c94a519231ea443ecb0 Mon Sep 17 00:00:00 2001
From: Florent Pruvost <florent.pruvost@inria.fr>
Date: Thu, 23 Mar 2023 14:48:30 +0100
Subject: [PATCH] Do not save all files generated for macosx (to avoid getting
 it in the sonarqube job) and add the junit report

---
 .gitlab/test_starpu.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.gitlab/test_starpu.yml b/.gitlab/test_starpu.yml
index 45dd5bfb5..c0ec2c9ac 100644
--- a/.gitlab/test_starpu.yml
+++ b/.gitlab/test_starpu.yml
@@ -87,9 +87,11 @@ test_starpu_shm_s_macosx:
   variables:
     VERSION: starpu
   script:
-    - cd build-starpu && ctest -R test_shm_s -T Test | tee -a ../chameleon_macosx.log
+    - cd build-starpu && ctest --no-compress-output -R test_shm_s -T Test --output-junit ../chameleon_macosx.junit | tee -a ../chameleon_macosx.log
   artifacts:
     name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
-    untracked: true
+    paths: ['chameleon_macosx.log']
     expire_in: 2 days
     when: always
+    reports:
+      junit: chameleon_macosx.junit
\ No newline at end of file
-- 
GitLab