aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 6381efe38549fc2f26a92b8067556ecd23498e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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