-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitlab-ci.yml
67 lines (59 loc) · 1.12 KB
/
.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
stages:
- test
.trigger_sdk_test:
stage: test
rules:
- if: $CI_MERGE_REQUEST_ID
changes:
- ${SDK_LANG}/**/*
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
sast_scan:
stage: test
trigger:
include:
- project: 'gfg/moca/cicd-pipelines'
ref: 'master'
file: 'sast.main.pipeline.yml'
strategy: depend
java:
extends: .trigger_sdk_test
trigger:
include: Java/.gitlab-ci.yml
strategy: depend
variables:
SDK_LANG: Java
python:
extends: .trigger_sdk_test
trigger:
include: Python/.gitlab-ci.yml
strategy: depend
variables:
SDK_LANG: Python
php:
extends: .trigger_sdk_test
trigger:
include: Php/.gitlab-ci.yml
strategy: depend
variables:
SDK_LANG: Php
node:
extends: .trigger_sdk_test
trigger:
include: Node/.gitlab-ci.yml
strategy: depend
variables:
SDK_LANG: Node
net:
extends: .trigger_sdk_test
trigger:
include: Net/.gitlab-ci.yml
strategy: depend
variables:
SDK_LANG: Net
go:
extends: .trigger_sdk_test
trigger:
include: Go/.gitlab-ci.yml
strategy: depend
variables:
SDK_LANG: Go