From e81c69974801576d7723bd013c41f1bce471b2f7 Mon Sep 17 00:00:00 2001
From: "Mulas, Giacomo" <gmulas@oa-cagliari.inaf.it>
Date: Fri, 9 Feb 2024 15:25:30 +0100
Subject: [PATCH] in the pipeline, move compile with default compiler to last,
 to leave those executables for the run test

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 390a0dd6..d52d23a3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -46,8 +46,6 @@ building_stage:
       - echo "Getting system info ..."
       - cat /etc/os-release
       - cd src
-      - echo "Running make with default compilers..."
-      - make wipe && make -j
       - echo "Running make with gnu compilers version 11..."
       - make wipe && CXX=g++-11 FC=gfortran-11 make -j
       - echo "Running make with gnu compilers version 12..."
@@ -60,6 +58,8 @@ building_stage:
       - make wipe && CXX="clang++-15 -stdlib=libc++" FC=gfortran-12 make -j
       - echo "Running make with gnu fortran version 12 and clang version 16..."
       - make wipe && CXX="clang++-16 -stdlib=libc++" FC=gfortran-12 make -j
+      - echo "Finally running make with default compilers..."
+      - make wipe && make -j
       - make docs -j && make -C ../doc/build/latex -j
 
 running_stage:
-- 
GitLab