Set gitlab-ci stages on one line

Rather than doing this in two separate lines.  Also drop the -j2
argument to scons to help with memory issues.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2016-02-26 14:05:46 -05:00
parent 6e838ffba3
commit 7cdc5678c6
1 changed files with 3 additions and 5 deletions

View File

@ -4,13 +4,11 @@ stages:
- test - test
build: build:
stage: stage: build
- build
script: script:
- scons -j2 - scons
test: test:
stage: stage: test
- test
script: script:
- scons tests/core - scons tests/core