Skip to content
Snippets Groups Projects
Commit 7f4173db authored by Georges Da Costa's avatar Georges Da Costa
Browse files

Update .gitlab-ci.yml file

parent 0ab1400a
No related branches found
No related tags found
No related merge requests found
Pipeline #5550 failed
stages: stages:
- build-option - 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: job-build-network:
stage: build-option stage: build-option
...@@ -8,5 +23,27 @@ job-build-network: ...@@ -8,5 +23,27 @@ job-build-network:
- ./configure.sh -u network - ./configure.sh -u network
- make - 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: workflow:
name: 'Pipeline for branch: $CI_COMMIT_BRANCH' name: 'Pipeline for branch: $CI_COMMIT_BRANCH'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment