From 4b10a77fb4f99d0743b19b6df6a026aa2c761b19 Mon Sep 17 00:00:00 2001
From: Nicolas Richart <nicolas.richart@epfl.ch>
Date: Thu, 25 Jan 2024 00:03:54 +0100
Subject: [PATCH] small improvements

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 908f4c7..f1ea4a9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -113,7 +113,7 @@ spack:install_compilers:
     - .parallel_job
   script:
     - COMPILER_LIST_SPECS=$(jq -r '.stack | .core_compiler as $core | .compilers | map("\(.spec)@\(.version) %\($core)")[]' config.json)
-    - echo "Compilers to install ${COMPILER_LIST_SPECS}"
+    - echo "Compilers to install \n${COMPILER_LIST_SPECS}"
 
     - spack/bin/spack spec
       --install-status
@@ -138,12 +138,12 @@ spack:install_compilers:
     - |
       echo 'definitions: [ compilers: [' ${COMPILER_LIST_SPECS} ']]' > compiler_definitions.yaml
 
-    - spack/bin/spack compiler find --scope site /usr
+    - spack/bin/spack compiler find --scope system /usr
 
     - |
       while read -r compiler
       do
-        spack/bin/spack compiler find --scope site $(spack/bin/spack location -i ${compiler})
+        spack/bin/spack compiler find --scope system $(spack/bin/spack location -i ${compiler})
       done <<< $(echo "${COMPILER_LIST_SPECS}")
   artifacts:
     reports:
-- 
GitLab