blob: 33827f677c43c33a91147e18a0650871e71c4cca (
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
56
57
58
59
60
|
stages:
- test
- build
docker-build-master:
needs: [ "test" ]
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" ]
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 --cov=importer
artifacts:
reports:
junit: report.xml
pages:
needs: [ "test" ]
image: node:10
stage: build
script:
- npm install gitbook-cli -g
- gitbook fetch 3.2.3
- gitbook install
- gitbook build . public
artifacts:
paths:
- public
only:
- master
|