From 7fb584581b8cff2b33a1212760e5fc37769bce31 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Tue, 23 Feb 2016 08:41:00 -0500 Subject: [PATCH] Rewrite .gitlab-ci.yml I think this should get it running ... Signed-off-by: Anna Schumaker --- .gitlab-ci.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 132a5552..2d431999 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,16 @@ -job1: - script: "scons" -job2: - scrpt: "scons tests/core" +stages: + - build + - test + +build: + stage: + - build + script: + - scons -j2 + +test: + stage: + - test + script: + - scons tests/core