vengi/.gitlab-ci.yml

17 lines
364 B
YAML
Raw Normal View History

2017-08-30 10:42:36 -07:00
image: registry.gitlab.com/mgerhardy/engine-docker:master
2016-07-12 11:30:03 -07:00
build:
script:
2016-07-12 11:51:04 -07:00
- make -j 4
2017-08-20 22:00:33 -07:00
- make tests ARGS="--gtest_filter=-DatabaseModelTest.*:ConnectionPoolTest.*:WorldRendererTest.testCreate:UIShaderTest.*:FrontendShaderTest.*"
2016-08-05 11:55:11 -07:00
pages:
script:
- make doc
2017-08-20 10:55:42 -07:00
- mv build/Debug/html/ public/
2016-08-05 11:55:11 -07:00
artifacts:
paths:
- public
only:
2016-09-05 11:48:35 -07:00
- master