Browse Source

gci : attempt to split the build & test procedure into 2 jobs

keep-around/b726664be587f5a3e72f18faf4acee81f0887cae
Peio Rigaux 7 years ago
parent
commit
b726664be5
1 changed files with 12 additions and 6 deletions
  1. +12
    -6
      .gitlab-ci.yml

+ 12
- 6
.gitlab-ci.yml View File

@ -1,14 +1,20 @@
image: gitlab.linphone.org:4567/bc/public/linphone-sdk/bc-dev-debian:9
before_script:
- sudo apt-get install wget unzip
stages:
- build
- test
job1:
stage: build
tags: [ "docker" ]
image: gitlab.linphone.org:4567/bc/public/linphone-sdk/bc-dev-debian:9
before_script:
- sudo apt-get install wget unzip
script:
- mkdir -p build-bcg729
- cd build-bcg729
- cmake .. -DENABLE_TESTS=YES
- make
job2:
stage: test
script:
- cd test
- ./testCampaignAll
- ./testCampaignAll

Loading…
Cancel
Save