-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
217 lines (188 loc) · 4.2 KB
/
.gitlab-ci.yml
File metadata and controls
217 lines (188 loc) · 4.2 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
stages:
- build
- testing
windows_debug_x64:
stage: build
script: "build.sh Debug x64"
tags:
- windows
- vs2019
windows_release_x64:
stage: build
script: "build.sh Release x64"
tags:
- windows
- vs2019
linux_release_x64_gcc_deb:
image: gitlab.euclideon.com:4567/docker-images/dev-xenial:v6
stage: build
script: "./build.sh Release x64"
tags:
- linux
- docker
linux_debug_x64_gcc_deb:
image: gitlab.euclideon.com:4567/docker-images/dev-xenial:v6
stage: build
script: "./build.sh Debug x64"
tags:
- linux
- docker
linux_release_x64_clang_deb:
image: gitlab.euclideon.com:4567/docker-images/dev-xenial:v6
stage: build
script: "./build.sh ReleaseClang x64"
tags:
- linux
- docker
linux_debug_x64_clang_deb:
image: gitlab.euclideon.com:4567/docker-images/dev-xenial:v6
stage: build
script: "./build.sh DebugClang x64"
tags:
- linux
- docker
bionic_release_x64_gcc_deb:
image: gitlab.euclideon.com:4567/docker-images/dev-bionic:v2
stage: build
script: "./build.sh Release x64"
tags:
- linux
- docker
bionic_debug_x64_gcc_deb:
image: gitlab.euclideon.com:4567/docker-images/dev-bionic:v2
stage: build
script: "./build.sh Debug x64"
tags:
- linux
- docker
bionic_release_x64_clang_deb:
image: gitlab.euclideon.com:4567/docker-images/dev-bionic:v2
stage: build
script: "./build.sh ReleaseClang x64"
tags:
- linux
- docker
bionic_debug_x64_clang_deb:
image: gitlab.euclideon.com:4567/docker-images/dev-bionic:v2
stage: build
script: "./build.sh DebugClang x64"
tags:
- linux
- docker
linux_release_x64_gcc_rpm:
image: gitlab.euclideon.com:4567/docker-images/dev-centos7:v4
stage: build
script: "./build.sh Release x64"
tags:
- linux
- docker
linux_debug_x64_gcc_rpm:
image: gitlab.euclideon.com:4567/docker-images/dev-centos7:v4
stage: build
script: "./build.sh Debug x64"
tags:
- linux
- docker
linux_release_x64_clang_rpm:
image: gitlab.euclideon.com:4567/docker-images/dev-centos7:v4
stage: build
script: "./build.sh ReleaseClang x64"
tags:
- linux
- docker
linux_debug_x64_clang_rpm:
image: gitlab.euclideon.com:4567/docker-images/dev-centos7:v4
stage: build
script: "./build.sh DebugClang x64"
tags:
- linux
- docker
macosx_release_x64_clang:
stage: build
script: "./build.sh Release x86_64 xcode"
tags:
- osx
macosx_debug_x64_clang:
stage: build
script: "./build.sh Debug x86_64 xcode"
tags:
- osx
ios_release_arm64_clang:
stage: build
script: "./build.sh Release arm64 ios"
tags:
- osx
ios_debug_arm64_clang:
stage: build
script: "./build.sh Debug arm64 ios"
tags:
- osx
ios_release_x86_64_clang:
stage: build
script: "./build.sh Release x86_64 ios"
tags:
- osx
ios_debug_x86_64_clang:
stage: build
script: "./build.sh Debug x86_64 ios"
tags:
- osx
android_debug_arm64:
stage: build
script: "build.sh Debug arm64 android"
tags:
- windows
- vs2019
android_release_arm64:
stage: build
script: "build.sh Release arm64 android"
tags:
- windows
- vs2019
android_debug_x64:
stage: build
script: "build.sh Debug x64 android"
tags:
- windows
- vs2019
android_release_x64:
stage: build
script: "build.sh Release x64 android"
tags:
- windows
- vs2019
emscripten_release_js_emcc:
image: gitlab.euclideon.com:4567/docker-images/emscripten-bionic:v1
stage: build
script: "./build.sh Release Emscripten"
tags:
- linux
- docker
emscripten_debug_js_emcc:
image: gitlab.euclideon.com:4567/docker-images/emscripten-bionic:v1
stage: build
script: "./build.sh Debug Emscripten"
tags:
- linux
- docker
test_coverage:
image: gitlab.euclideon.com:4567/docker-images/dev-xenial:v6
stage: testing
script: "./build.sh Release x64 Coverage"
tags:
- linux
- docker
valgrind_memcheck:
image: gitlab.euclideon.com:4567/docker-images/dev-bionic:v2
stage: testing
script: "./build.sh Debug x64 memcheck"
tags:
- linux
- docker
valgrind_helgrind:
image: gitlab.euclideon.com:4567/docker-images/dev-bionic:v2
stage: testing
script: "./build.sh Debug x64 helgrind"
tags:
- linux
- docker