From ec3b9f7c8ea8db9fcbea7a3fe0fd07cb6e4224ce Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Mon, 26 Sep 2016 08:23:09 -0400 Subject: [PATCH] .gitlab-ci.yml: Update for CMake conversion Signed-off-by: Anna Schumaker --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4e77f00c..3bc2aaa2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,9 +6,9 @@ stages: build: stage: build script: - - scons + - cmake . && make test: stage: test script: - - scons tests/core + - cmake . && make tests