aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: a951333d78569a2d441b1db97aa7b95cd5670218 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
stages:
  - test
  - build

docker-build-master:
  needs: [ "test", "coverage" ]
  image: docker:latest
  stage: build
  services:
    - docker:dind
  before_script:
    - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
  script:
    - docker build --pull -t "$CI_REGISTRY_IMAGE" -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA" .
    - docker push "$CI_REGISTRY_IMAGE"
    - docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA"
  only:
    - master

docker-build:
  needs: [ "test", "coverage" ]
  image: docker:latest
  stage: build
  services:
    - docker:dind
  before_script:
    - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
  script:
    - docker build --pull -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA" .
    - docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
    - docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA"
  except:
    - master


test:
  image: python:3-alpine
  stage: test
  script:
    - pip install -r dev-requirements.txt
    - pytest -n 4 --junitxml=report.xml
  artifacts:
    reports:
      junit: report.xml

coverage:
  image: python:3-alpine
  stage: test
  script:
    - pip install -r dev-requirements.txt
    - coverage run -m pytest
    - coverage xml -o cobertura.xml
  artifacts:
    reports:
      cobertura: cobertura.xml