From 0cdd86bde86d8da417e9001bbde65c4bfa517ed6 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sat, 19 Mar 2016 00:53:40 +0900 Subject: [PATCH] Updated .gitlab-ci.yml --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2e7ebc3..56b4ffd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,15 +1,11 @@ image: seo.disparate/gcc-runner:latest - stages: - build - test buildJob: stage: build - artifacts: - paths: - - buildDebug/ tags: - docker script: @@ -23,6 +19,9 @@ testJob: tags: - docker script: + - mkdir -p buildDebug - cd buildDebug + - cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=True ../src + - make - ./UnitTests