From 52abe2f493448e17b5ac302c045546ed0fbb8cb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dion=20H=C3=A4fner?= Date: Thu, 1 Sep 2016 17:44:02 +0200 Subject: [PATCH] pass artifacts to test job --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 19d6f2cb..94fdfa5e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,12 +12,15 @@ stages: build_job: script: - - pwd - ./dune-common/bin/dunecontrol --only=dorie all - ./dune-common/bin/dunecontrol --only=dorie make install stage: build + artifacts: + untracked: true test_job: script: - ./dune-common/bin/dunecontrol --only=dorie make test stage: test + dependencies: + - build_job -- GitLab