mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-08 16:43:47 +01:00
23 lines
387 B
YAML
23 lines
387 B
YAML
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
|
|
- ./utils/tests_cov.sh
|
|
- docker-compose down
|