From 53c59da39cca5bce078cd317da4c55fafe7c3eaa Mon Sep 17 00:00:00 2001
From: Ammar Nejati <a.nejati@fz-juelich.de>
Date: Tue, 21 Mar 2023 16:38:29 +0100
Subject: [PATCH] GitLab-CI: rename jobs and tags for Mac CI-machines [MacOS]

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 85c80e98..2230df08 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,18 +1,19 @@
 stages:
   - build
 
-mac:
+mac_x64:
   tags:
-  - macbuild3
+  - mac_x64
   stage: build
   before_script:
   - export PATH="/usr/local/opt/flex/bin:/usr/local/opt/bison/bin:$PATH"
   - export LDFLAGS="-L/usr/local/opt/flex/lib -L/usr/local/opt/bison/lib"
   - export CPPFLAGS="-I/usr/local/opt/flex/include"
   script:
+  - OPTDIR=/Users/Shared/Software
   - mkdir pub/build
   - cd pub/build
-  - cmake ..
+  - cmake -DCMAKE_PREFIX_PATH="$OPTDIR" -S ..
   - make -j4
   - ctest --output-on-failure --timeout 120
   artifacts:
-- 
GitLab