From 7f4173dbe0af851377cc1181a49201efad07fcab Mon Sep 17 00:00:00 2001 From: Georges Da Costa <42-dacosta@users.noreply.022e47118ec0> Date: Mon, 17 Apr 2023 22:48:31 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3931b48..34e90a7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,20 @@ stages: - build-option + - build + +job-build-counters: + stage: build-option + script: + - apk add make gcc musl-dev + - ./configure.sh -u counters + - make + +job-build-load: + stage: build-option + script: + - apk add make gcc musl-dev + - ./configure.sh -u load + - make job-build-network: stage: build-option @@ -8,5 +23,27 @@ job-build-network: - ./configure.sh -u network - make +job-build-rapl: + stage: build-option + script: + - apk add make gcc musl-dev + - ./configure.sh -u rapl + - make + +job-build: + stage: build + script: + - apk add make gcc musl-dev + - ./configure.sh + - make + +job-build-test: + stage: build + script: + - apk add make gcc musl-dev + - ./configure.sh + - make tests + workflow: name: 'Pipeline for branch: $CI_COMMIT_BRANCH' + -- GitLab