contentdb/.gitlab-ci.yml

23 lines
387 B
YAML
Raw Normal View History

2020-01-19 16:51:47 +01:00
image: docker/compose
services:
- docker:dind
cache:
key: "$CI_COMMIT_REF_SLUG"
paths:
- /var/lib/docker
# build:
# stage: build
# script:
# - cp utils/gitlabci/* .
# - docker-compose build
UI_Test:
stage: test
script:
- cp utils/gitlabci/* .
- docker-compose up -d
- ./utils/run_migrations.sh
2020-01-19 20:09:04 +01:00
- ./utils/tests_cov.sh
2020-01-19 16:51:47 +01:00
- docker-compose down