From dea86c6baa6b2f072f6636a482717e0150ab4af0 Mon Sep 17 00:00:00 2001 From: Georges Da Costa <dacosta@irit.fr> Date: Sat, 30 Sep 2023 19:09:40 +0200 Subject: [PATCH] adds tests CI --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2052da5..10d996c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,36 +5,42 @@ stages: job-build-counters: stage: build-option script: + - apk add make gcc musl-dev linux-headers - ./configure.sh -u counters - make job-build-load: stage: build-option script: + - apk add make gcc musl-dev linux-headers - ./configure.sh -u load - make job-build-network: stage: build-option script: + - apk add make gcc musl-dev linux-headers - ./configure.sh -u network - make job-build-rapl: stage: build-option script: + - apk add make gcc musl-dev linux-headers - ./configure.sh -u rapl - make job-build: stage: build script: + - apk add make gcc musl-dev linux-headers - ./configure.sh - make job-build-test: stage: build script: + - apk add make gcc musl-dev linux-headers - ./configure.sh - make tests -- GitLab