From 25285f498db966df708469f38a539721a94feef5 Mon Sep 17 00:00:00 2001 From: Peio Rigaux Date: Thu, 15 Nov 2018 16:26:16 +0100 Subject: [PATCH] gci : yet another attempt to share informations between stages, here with artifacts --- .gitlab-ci.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b5806dc..1f7bbf0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 \ No newline at end of file + #- ./testCampaignAll + dependencies: + - build \ No newline at end of file