forked from GrammaTech/libehp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
184 lines (154 loc) · 2.35 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
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
before_script:
- "source ~gitlab-runner/cicd_support/cicd_support.shinc"
after_script:
- "echo Test Complete."
stages:
- clean
- build
- test
- fuzz
- deploy
#
# Cleaning
#
do-clean-ubuntu22:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- ubuntu22
do-clean-ubuntu20:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- ubuntu20
do-clean-ubuntu18:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- ubuntu18
do-clean-ubuntu16:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- ubuntu16
do-clean-arm32:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- arm32
do-clean-arm64:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- arm64
do-clean-centos76:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- centos76
#
# Building
#
do-build-ubuntu22:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- ubuntu22
do-build-ubuntu20:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- ubuntu20
do-build-ubuntu18:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- ubuntu18
do-build-ubuntu16:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- ubuntu16
do-build-arm64:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- arm64
do-build-arm32:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- arm32
do-build-centos76:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- centos76
#
# Testing
#
do-test-ubuntu22:
stage: test
script:
- ./cicd_testing/do-test.sh
tags:
- ubuntu22
do-test-ubuntu20:
stage: test
script:
- ./cicd_testing/do-test.sh
tags:
- ubuntu20
do-test-ubuntu18:
stage: test
script:
- ./cicd_testing/do-test.sh
tags:
- ubuntu18
do-test-ubuntu16:
stage: test
script:
- ./cicd_testing/do-test.sh
tags:
- ubuntu16
do-test-arm32:
stage: test
script:
- ./cicd_testing/do-test.sh
tags:
- arm32
do-test-arm64:
stage: test
script:
- ./cicd_testing/do-test.sh
tags:
- arm64
do-test-centos76:
stage: test
script:
- ./cicd_testing/do-test.sh
tags:
- centos76
#
# Deploy
#
do-deploy-ubuntu18:
stage: deploy
script:
- ./cicd_testing/do-deploy.sh
tags:
- ubuntu18