Browse Source

gci : yet another attempt to share informations between stages, here with artifacts

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

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

@ -4,7 +4,7 @@ before_script:
stages:
- build
- test
job1:
build:
stage: build
tags: [ "docker" ]
script:
@ -13,16 +13,17 @@ job1:
- cmake .. -DENABLE_TESTS=YES
- make
- ls -la test
cache:
untracked: true
artifacts:
paths:
- .*
- ./*
job2:
test:
stage: test
tags: [ "docker" ]
script:
- ls -la
- cd test
- ls -la
#- ./testCampaignAll
#- ./testCampaignAll
dependencies:
- build

Loading…
Cancel
Save