-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitlab-ci.yml
43 lines (33 loc) · 887 Bytes
/
.gitlab-ci.yml
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
image: python:3.6
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache"
stages:
- docs
- build-base
- build-meltano
- test
- publish
- distribute
include:
- local: .gitlab/ci/global.gitlab-ci.yml
- local: .gitlab/ci/docker.gitlab-ci.yml
# build-base
- local: .gitlab/ci/docker_base.gitlab-ci.yml
# build-meltano
- local: .gitlab/ci/docker_prod.gitlab-ci.yml
# docs
- local: .gitlab/ci/docs.gitlab-ci.yml
# test
- local: .gitlab/ci/test.gitlab-ci.yml
- local: .gitlab/ci/test_webapp.gitlab-ci.yml
- local: .gitlab/ci/homepage_sample_code.gitlab-ci.yml
- local: .gitlab/ci/demo_project.gitlab-ci.yml
# publish
- local: .gitlab/ci/publish.gitlab-ci.yml
# distribute
- local: .gitlab/ci/distribute.gitlab-ci.yml
# SAST
- template: SAST.gitlab-ci.yml
sast:
variables:
SAST_EXCLUDED_PATHS: cloud,docker,docs,model,scripts,tests