From df3d9891390cc727bfdae93c40a51280d010488d Mon Sep 17 00:00:00 2001
From: Giovanni La Mura <giovanni.lamura@inaf.it>
Date: Tue, 26 Dec 2023 11:55:10 +0100
Subject: [PATCH] Look for available compilers

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c8685d94..7ec66167 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,6 @@
 
 default:
    image: gcc
-   tags: ["development"]
 
 # Switch from branch pipelines to merge request pipelines when a merge request is created
 workflow:
@@ -43,12 +42,12 @@ building_stage:
       - echo $CI_COMMIT_BRANCH
       - echo "Getting system info ..."
       - cat /etc/os-release
-      - echo "/bin/g*"
-      - ls /bin/g*
-      - echo "/usr/bin/g*"
-      - ls /usr/bin/g*
-      - echo "/usr/local/bin/g*"
-      - ls /usr/local/bin/g*
+      - echo "/bin/c*"
+      - ls /bin/c*
+      - echo "/usr/bin/c*"
+      - ls /usr/bin/c*
+      - echo "/usr/local/bin/c*"
+      - ls /usr/local/bin/c*
       #- cd src/sphere
       #- echo "Building SPHERE ..."
       #- gcc -O2 -lstdc++ -lm np_sphere.cpp sphere.cpp ../libnptm/Commons.cpp ../libnptm/Configuration.cpp ../libnptm/Parsers.cpp -o ../../build/sphere/np_sphere
-- 
GitLab