From 290895fd7e5b6b2032b85df7bc12205946f7b0d3 Mon Sep 17 00:00:00 2001
From: Georges Da Costa <dacosta@irit.fr>
Date: Sun, 17 Dec 2023 14:56:58 +0100
Subject: [PATCH] Adds CI tests for likwid

---
 .gitlab-ci.yml | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 10d996c..827724b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,38 +9,45 @@ job-build-counters:
     - ./configure.sh -u counters
     - make
 
+job-build-likwid:
+  stage: build-option
+  script:
+    - apk add make gcc musl-dev likwid
+    - ./configure.sh -u likwid
+    - make
+
 job-build-load:
   stage: build-option
   script:
-    - apk add make gcc musl-dev linux-headers
+    - apk add make gcc musl-dev
     - ./configure.sh -u load
     - make
 
 job-build-network:
   stage: build-option
   script:
-    - apk add make gcc musl-dev linux-headers
+    - apk add make gcc musl-dev
     - ./configure.sh -u network
     - make
 
 job-build-rapl:
   stage: build-option
   script:
-    - apk add make gcc musl-dev linux-headers
+    - apk add make gcc musl-dev
     - ./configure.sh -u rapl
     - make
 
 job-build:
   stage: build
   script:
-    - apk add make gcc musl-dev linux-headers
+    - apk add make gcc musl-dev linux-headers likwid
     - ./configure.sh
     - make
 
 job-build-test:
   stage: build
   script: 
-    - apk add make gcc musl-dev linux-headers
+    - apk add make gcc musl-dev linux-headers likwid
     - ./configure.sh
     - make tests
 
-- 
GitLab