ocarina/.gitlab-ci.yml
Anna Schumaker 2e38b3551e tests: Add a switch for disabling GUI tests
NoWheyCreamery.com doesn't run an Xserver, so we can't run UI tests.
Add a switch to disable these so test results can be reported
accurately.

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2016-09-26 08:26:45 -04:00

15 lines
209 B
YAML

stages:
- build
- test
build:
stage: build
script:
- cmake -DCONFIG_DEBUG=ON && make
test:
stage: test
script:
- cmake -DCONFIG_TESTING_VERBOSE=ON -DCONFIG_TESTING_GUI=OFF && make tests