From babfe67250baaab04725ee574c1a53377ec7463d Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Fri, 25 Mar 2016 07:31:08 +0100 Subject: [PATCH] Try stages...for now my jobs are called like the stages I use... --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 11583a2..494cd62 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,15 @@ +stages: + - build + - test + build: + stage: build script: - ./bootstrap - ./configure --enable-gcov - make + +test: + stage: test + script: - make coverage-html