-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci-test.yml
119 lines (110 loc) · 2.07 KB
/
.gitlab-ci-test.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
.push_deploy:
when: manual
allow_failure: false
build:dev_monorepo:
stage: build
only:
changes:
- ApiServer/*
- WebApp/*
except:
- ^(?!(feature|bugfix).*$).*$
artifacts:
paths:
- ApiServer/dist
- WebApp/build
script:
- .gitlab-ci-scripts/mono-build.sh
test:dev_monorepo:
stage: test
only:
changes:
- ApiServer/*
- WebApp/*
except:
- ^(?!(feature|bugfix).*$).*$
dependencies:
- build:dev_monorepo
script:
- .gitlab-ci-scripts/mono-test.sh
build:nightly_monorepo:
stage: build
only:
refs:
- nightly
changes:
- ApiServer/*
- WebApp/*
artifacts:
paths:
- ApiServer/dist
- WebApp/build
script:
- .gitlab-ci-scripts/mono-build.sh
test:nightly_monorepo:
stage: test
only:
refs:
- nightly
changes:
- ApiServer/*
- WebApp/*
dependencies:
- build:nightly_monorepo
script:
- .gitlab-ci-scripts/mono-test.sh
build:staging_monorepo:
stage: build
only:
refs:
- staging
changes:
- ApiServer/*
- WebApp/*
artifacts:
paths:
- ApiServer/dist
- WebApp/build
script:
- .gitlab-ci-scripts/mono-build.sh
test:staging_monorepo:
stage: test
only:
refs:
- staging
changes:
- ApiServer/*
- WebApp/*
dependencies:
- build:staging_monorepo
script:
- .gitlab-ci-scripts/mono-test.sh
# merge:to_master:
# stage: merge
# only:
# - nightly
# script:
# - .gitlab-ci-scripts/configure-git.sh
# - git checkout master
# - git merge origin/nightly
# - git push
# merge:to_staging:
# stage: merge
# extends: .push_deploy
# only:
# - master
# script:
# - .gitlab-ci-scripts/configure-git.sh
# - git checkout staging
# - git merge origin/master
# - git push
# merge:to_production:
# stage: merge
# extends: .push_deploy
# only:
# - staging
# script:
# - .gitlab-ci-scripts/configure-git.sh
# - git checkout production
# - git merge origin/staging
# - git push