.gitlab-ci.yml: Update for CMake conversion

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
This commit is contained in:
Anna Schumaker 2016-09-26 08:23:09 -04:00
parent 142af976b3
commit ec3b9f7c8e
1 changed files with 2 additions and 2 deletions

View File

@ -6,9 +6,9 @@ stages:
build: build:
stage: build stage: build
script: script:
- scons - cmake . && make
test: test:
stage: test stage: test
script: script:
- scons tests/core - cmake . && make tests