summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 456338ccd2f8227bb9e9015972d9d4fe11b360d5 (plain)
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
variables:
  GIT_STRATEGY: "clone"
  BUILD_PADDING_PREFIX: /tmp/padding_for_CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX_PREFIX_PREFIX_PREFIX_PREFIX_PREFIX/
  BUILD_IMAGE_CENTOS7: "git.mesalab.cn:7443/mesa_platform/build-env:centos7-for-sapp"
  BUILD_IMAGE_CENTOS8: "git.mesalab.cn:7443/mesa_platform/build-env:rocky8-for-sapp"
  INSTALL_DEPENDENCY_LIBRARY: 
    libMESA_htable-devel libMESA_prof_load-devel libcjson-devel libMESA_field_stat2-devel  framework_env 
    libMESA_handle_logger-devel libbreakpad_mini-devel
    libMESA_jump_layer-devel libfieldstat3-devel
    libMESA_htable libMESA_prof_load  libMESA_field_stat2  libMESA_handle_logger 
    libcjson libbreakpad_mini libMESA_jump_layer libfieldstat3
    mrzcpd-corei7 hasp-tools
  SYMBOL_TARGET: sapp
  TEST_NAME: gtest_sapp_v4
  INSTALL_PREFIX: "/home/mesasoft/sapp_run/"

stages:
- cppcheck
- build
- test
- envelope
- upload

.everything_before_script: &everything_before_script
    - mkdir -p $BUILD_PADDING_PREFIX/$CI_PROJECT_NAMESPACE/
    - ln -s $CI_PROJECT_DIR $BUILD_PADDING_PREFIX/$CI_PROJECT_PATH
    - cd $BUILD_PADDING_PREFIX/$CI_PROJECT_PATH
    - chmod +x ./ci/travis.sh
    - yum makecache --disablerepo="*" --enablerepo="framework,platform"
    - yum install -y $INSTALL_DEPENDENCY_LIBRARY
    - source /etc/profile.d/framework.sh; source /etc/profile.d/mrzcpd.sh
###############################################################################
# cppcheck 
###############################################################################
.cppcheck_script:
  variables:    
    BUILD_TYPE: Debug
    CAPTURE_MODE: MARSIO
    PLATFORM_MODE: INLINE
  stage: cppcheck
  script:
    - cd build; cmake3 -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ..
    - >
      cppcheck --project=compile_commands.json 
      --enable=all 
      --error-exitcode=1 
      --suppress=unusedFunction 
      --suppress=missingInclude 
      --suppress=uselessAssignmentPtrArg
      --suppress=unmatchedSuppression
      --suppress=variableScope
      --suppress=unreadVariable
      --suppress=cstyleCast
      --suppress=memleakOnRealloc
      --suppress=constParameter
      --suppress=uselessAssignmentArg
      --suppress=uninitvar
      --suppress=unusedStructMember
      --suppress=preprocessorErrorDirective
      --suppress=syntaxError
  tags:
    - share

run_cppcheck_for_centos7:
  extends: .cppcheck_script
  image: $BUILD_IMAGE_CENTOS7

run_cppcheck_for_centos8:
  extends: .cppcheck_script
  image: $BUILD_IMAGE_CENTOS8

###############################################################################
# build 
###############################################################################

.build_before_script:
  before_script: *everything_before_script
  script:
    - ./ci/travis.sh
  variables:    
    BUILD_TEST: "ON"
    BUILD_TYPE: Debug
    CAPTURE_MODE: MARSIO
    PLATFORM_MODE: INLINE
  tags:
    - share

.build_by_travis_for_centos7:
  extends: .build_before_script
  stage: build
  image: $BUILD_IMAGE_CENTOS7


develop_build_for_centos7:
  extends: .build_by_travis_for_centos7
  variables:
    BUILD_TYPE: RelWithDebInfo
  artifacts:
    name: "$SYMBOL_TARGET-$CI_COMMIT_REF_NAME-debug"
    paths:
      - build/*
  except:
    - tags

release_build_debug_for_centos7:
  extends: .build_by_travis_for_centos7
  variables:
    BUILD_TYPE: Debug
    PACKAGE: 1
    ASAN_OPTION: "ADDRESS"
  script:
    - source /opt/rh/devtoolset-7/enable || true
    - ./ci/travis.sh    
  artifacts:
    name: "$SYMBOL_TARGET-$CI_COMMIT_REF_NAME-release"
    paths:
      - build/*
  only:
    - tags

release_build_for_centos7:
  extends: .build_by_travis_for_centos7
  variables:
    BUILD_TYPE: RelWithDebInfo
    MEM_POOL: JEMALLOC_STATIC  
    PACKAGE: 1
  artifacts:
    name: "$SYMBOL_TARGET-$CI_COMMIT_REF_NAME-release"
    paths:
      - build/*
  only:
    - tags   

.build_by_travis_for_centos8:
  stage: build
  image: $BUILD_IMAGE_CENTOS8
  extends: .build_before_script

develop_build_for_centos8:
  extends: .build_by_travis_for_centos8
  variables:
    BUILD_TYPE: RelWithDebInfo
  artifacts:
    name: "$SYMBOL_TARGET-$CI_COMMIT_REF_NAME-debug"
    paths:
      - build/*
  except:
    - tags

release_build_debug_for_centos8:
  extends: .build_by_travis_for_centos8
  variables:
    BUILD_TYPE: Debug
    PACKAGE: 1
    ASAN_OPTION: "ADDRESS"
  artifacts:
    name: "$SYMBOL_TARGET-$CI_COMMIT_REF_NAME-release"
    paths:
      - build/*
  only:
    - tags

release_build_for_centos8:
  extends: .build_by_travis_for_centos8
  variables:
    BUILD_TYPE: RelWithDebInfo
    MEM_POOL: JEMALLOC_STATIC  
    PACKAGE: 1
  artifacts:
    name: "$SYMBOL_TARGET-$CI_COMMIT_REF_NAME-release"
    paths:
      - build/*
  only:
    - tags   

###############################################################################
# envelope 
###############################################################################
.define_before_envelope_centos8:
  stage: envelope
  extends: .build_by_travis_for_centos8
  variables:
    BUILD_TEST : "OFF"
    BUILD_TYPE: RelWithDebInfo
    MEM_POOL: JEMALLOC_STATIC  
    HASP_ENABLED: "ON"
    FEATURE_ID: 100
    HASP_INTERNAL_S: 3600
    PACKAGE: 1
  only:
    - tags
  tags:
    - share 

envelope_rpm_for_centos8:
  extends: .define_before_envelope_centos8
  image: $BUILD_IMAGE_CENTOS8
  artifacts:
    name: "$SYMBOL_TARGET-pr-$CI_COMMIT_REF_NAME-release"
    paths:
      - build/*-pr-*.rpm
  dependencies:
    - release_build_for_centos8


###############################################################################
# test 
###############################################################################

.setup_test_env_for_centos8:
  stage: test
  image: $BUILD_IMAGE_CENTOS8
  allow_failure: false
  before_script:
    - *everything_before_script
    - ls -l /opt/MESA/lib && echo "/opt/MESA/lib" >> /etc/ld.so.conf
    - ldconfig && sysctl -w net.ipv6.conf.all.disable_ipv6=0 && ifconfig && ulimit -c unlimited
    - ip neigh show && ip -6 neigh show
    - cd build; ctest3; pwd 
    - cd testing/ && ldd $TEST_NAME
  dependencies:
    - develop_build_for_centos8
    - release_build_for_centos8
  tags:
    - share    


benchmark_test_for_centos8:
  extends: .setup_test_env_for_centos8
  script:
#run module v2.0 with death test
    - ./$TEST_NAME -f control.*
    - ./$TEST_NAME -f fake_marsio.*
#run module v3.0
    - ./$TEST_NAME -f benchmark_drop.*
    - ./$TEST_NAME -f benchmark_forward.*
    - ./$TEST_NAME -f benchmark_inject.tcp*
    - ./$TEST_NAME -f benchmark_inject.inline_same_dir
    - ./$TEST_NAME -f benchmark_inject.inline_reverse_dir

inline_test_for_centos8:
  extends: .setup_test_env_for_centos8
  script:
#run module v2.0 with death test
    - ./$TEST_NAME -f inline_mode.*
#    - ./$TEST_NAME -f transparent.*

basic_test_for_centos8:
  extends: .setup_test_env_for_centos8
  script:
#run module v2.0 immediately
    - ./$TEST_NAME -f ipv4.*
    - ./$TEST_NAME -f ipv6.*
    - ./$TEST_NAME -f udp.*
    - ./$TEST_NAME -f appstate.*
    - ./$TEST_NAME -f timer.*
    - ./$TEST_NAME -f proxy.*
    - ./$TEST_NAME -f asymmetric.*
    - ./$TEST_NAME -f pkt_dump.*
    - ./$TEST_NAME -f project.*
    - ./$TEST_NAME -f stream_bridge.*
    - ./$TEST_NAME -f tunnel.*
    - ./$TEST_NAME -f plug_ctrl.*
    - ./$TEST_NAME -f jump_layer.*
    - ./$TEST_NAME -f hybrid.*
#    - ./$TEST_NAME -f inject.*
    - ./$TEST_NAME -f offload.*
    - ./$TEST_NAME -f tcp.*
    - ./$TEST_NAME -f tcpall.*

###############################################################################
# upload 
###############################################################################
.define_before_upload_centos7:
  stage: upload
  image: $BUILD_IMAGE_CENTOS7
  before_script:
    - pwd; ls -l ; cd build ; ls -l
    - cp /root/rpm_upload_tools.py ./
  variables:
    PULP3_REPO_NAME: platform-stable-x86_64.el7
    PULP3_DIST_NAME: platform-stable-x86_64.el7
  only:
    - tags
  tags:
    - share 

rpm_upload_for_centos7:
  extends: .define_before_upload_centos7
  dependencies:
    - release_build_debug_for_centos7
    - release_build_for_centos7
  script:
    - python3 rpm_upload_tools.py $PULP3_REPO_NAME $PULP3_DIST_NAME *.rpm    

.define_before_upload_centos8:
  stage: upload
  image: $BUILD_IMAGE_CENTOS8
  before_script:
    - pwd; ls -l ; cd build ; ls -l
    - cp /root/rpm_upload_tools.py ./  
  variables:
    PULP3_REPO_NAME: platform-stable-x86_64.el8
    PULP3_DIST_NAME: platform-stable-x86_64.el8
  only:
    - tags
  tags:
    - share 

rpm_upload_for_centos8:
  extends: .define_before_upload_centos8
  dependencies:
    - release_build_debug_for_centos8
    - release_build_for_centos8
  script:
    - python3 rpm_upload_tools.py $PULP3_REPO_NAME $PULP3_DIST_NAME *.rpm    

envelope_rpm_upload_for_centos8:
  extends: .define_before_upload_centos8
  dependencies:
    - envelope_rpm_for_centos8
  script:
    - python3 rpm_upload_tools.py $PULP3_REPO_NAME $PULP3_DIST_NAME *-pr-*.rpm