forked from arkime/arkime
-
Notifications
You must be signed in to change notification settings - Fork 8
/
screwdriver.yaml
460 lines (430 loc) · 30.7 KB
/
screwdriver.yaml
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
shared:
settings:
slack:
channels:
- moloch
statuses:
- FAILURE
- ABORTED
annotations:
beta.screwdriver.cd/cpu: HIGH
beta.screwdriver.cd/ram: HIGH
environment:
MOLOCH_COPY_BRANCH: "origin/master"
MOLOCH_FILE_NAME: "master"
ARKIME_FILE_NAME: "main"
GIT_SHALLOW_CLONE: false
ASAN_OPTIONS: "fast_unwind_on_malloc=0"
RELEASE_ITERATION: 1
jobs:
centos-7:
requires: [~pr, ~commit]
image: andywick/arkime-build-7:3.0.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- ln -s /thirdparty .
- build: scl enable devtoolset-9 rh-python36 "./easybutton-build.sh --daq --pfring --rminstall"
- test-capture: (cd tests ; ./tests.pl)
- export PATH=/opt/arkime/bin:/data/moloch/bin:$PATH
- npm -g config set user root; npm -g config set cache-min 9999999
- installing: make install
- linting: npm run lint
- cp -r capture/plugins/lua/samples /opt/arkime/lua
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /opt/arkime/viewer/version.js | head -n 1 | tr "-" "_" `
scl enable rh-ruby23 'fpm -s dir -t rpm -n arkime -x opt/arkime/logs -x opt/arkime/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Arkime Full Packet System" -d perl-libwww-perl -d perl-JSON -d ethtool -d libyaml-devel -d perl-LWP-Protocol-https /opt/arkime'
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
scl enable devtoolset-9 rh-python36 'aws s3 cp arkime*.x86_64.rpm s3://files.molo.ch/arkime-${ARKIME_FILE_NAME}.centos7.x86_64.rpm --acl public-read'
scl enable devtoolset-9 rh-python36 'aws s3api put-object-acl --bucket files.molo.ch --key arkime-${ARKIME_FILE_NAME}.centos7.x86_64.rpm --acl public-read'
fi
- build-moloch-package: |
rm -rf /data/moloch; mkdir -p /data
mv /opt/arkime /data/moloch
scl enable devtoolset-9 rh-python36 "./easybutton-build.sh --daq --pfring --dir /data/moloch"
scl enable devtoolset-9 rh-python36 "cd capture ; make clean; make; make install"
(cd release ; make installmoloch)
mv /data/moloch/bin/capture /data/moloch/bin/moloch-capture
/bin/cp -f viewer/version.js /data/moloch/viewer/
scl enable rh-ruby23 'fpm -s dir -t rpm -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Moloch Full Packet System" -d perl-libwww-perl -d perl-JSON -d ethtool -d libyaml-devel -d perl-LWP-Protocol-https /data/moloch'
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
scl enable devtoolset-9 rh-python36 'aws s3 cp moloch*.x86_64.rpm s3://files.molo.ch/moloch-${MOLOCH_FILE_NAME}.centos7.x86_64.rpm --acl public-read'
scl enable devtoolset-9 rh-python36 'aws s3api put-object-acl --bucket files.molo.ch --key moloch-${MOLOCH_FILE_NAME}.centos7.x86_64.rpm --acl public-read'
fi
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
centos-8:
requires: [~pr, ~commit]
image: andywick/arkime-build-8:3.0.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- ln -s /thirdparty .
- build: ./easybutton-build.sh --daq --pfring --rminstall
- test-capture: (cd tests ; ./tests.pl)
- export PATH=/opt/arkime/bin:/data/moloch/bin:$PATH
- npm -g config set user root; npm -g config set cache-min 9999999
- installing: make install
- linting: npm run lint
- cp -r capture/plugins/lua/samples /opt/arkime/lua
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /opt/arkime/viewer/version.js | head -n 1 | tr "-" "_"`
fpm -s dir -t rpm -n arkime -x opt/arkime/logs -x opt/arkime/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Arkime Full Packet System" -d perl-libwww-perl -d perl-JSON -d ethtool -d libyaml-devel -d perl-LWP-Protocol-https /opt/arkime
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet arkime*.x86_64.rpm s3://files.molo.ch/arkime-${ARKIME_FILE_NAME}.centos8.x86_64.rpm --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key arkime-${ARKIME_FILE_NAME}.centos8.x86_64.rpm --acl public-read
fi
- build-moloch-package: |
rm -rf /data/moloch; mkdir -p /data
mv /opt/arkime /data/moloch
./easybutton-build.sh --daq --pfring --dir /data/moloch
(cd capture ; make clean; make; make install)
(cd release ; make installmoloch)
mv /data/moloch/bin/capture /data/moloch/bin/moloch-capture
/bin/cp -f viewer/version.js /data/moloch/viewer/
fpm -s dir -t rpm -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Moloch Full Packet System" -d perl-libwww-perl -d perl-JSON -d ethtool -d libyaml-devel -d perl-LWP-Protocol-https /data/moloch
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet moloch*.x86_64.rpm s3://files.molo.ch/moloch-${MOLOCH_FILE_NAME}.centos8.x86_64.rpm --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key moloch-${MOLOCH_FILE_NAME}.centos8.x86_64.rpm --acl public-read
fi
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
ubuntu-16:
requires: [~pr, ~commit]
image: andywick/arkime-build-16:3.0.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- ln -s /thirdparty .
- build: ./easybutton-build.sh --daq --pfring --rminstall
- export PATH=/opt/arkime/bin:/data/moloch/bin:$PATH
- npm -g config set user root; npm -g config set cache-min 9999999
- installing: make install
- linting: npm run lint
- cp -r capture/plugins/lua/samples /opt/arkime/lua
- run-es: (chown -R elasticsearch /elasticsearch-7.9.3; cd /elasticsearch-7.9.3 ; su elasticsearch -c "ES_JAVA_OPTS='-Xms700m -Xmx700m' bin/elasticsearch" > /tmp/es &)
- test-capture: (cd tests ; ./tests.pl)
- sleep 30
- cat /tmp/es
- test-viewer: (cd tests ; ./tests.pl --viewer)
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /opt/arkime/viewer/version.js | head -n 1`
fpm -s dir -t deb -n arkime -x opt/arkime/logs -x opt/arkime/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Arkime Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /opt/arkime
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet arkime*amd64.deb s3://files.molo.ch/arkime-${ARKIME_FILE_NAME}_ubuntu16_amd64.deb --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key arkime-${ARKIME_FILE_NAME}_ubuntu16_amd64.deb --acl public-read
fi
- build-moloch-package: |
rm -rf /data/moloch; mkdir -p /data
mv /opt/arkime /data/moloch
./easybutton-build.sh --daq --pfring --dir /data/moloch
(cd capture ; make clean; make; make install)
(cd release ; make installmoloch)
mv /data/moloch/bin/capture /data/moloch/bin/moloch-capture
/bin/cp -f viewer/version.js /data/moloch/viewer/
fpm -s dir -t deb -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Moloch Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /data/moloch
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet moloch*amd64.deb s3://files.molo.ch/moloch-${MOLOCH_FILE_NAME}_ubuntu16_amd64.deb --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key moloch-${MOLOCH_FILE_NAME}_ubuntu16_amd64.deb --acl public-read
fi
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
ubuntu-18:
requires: [~pr, ~commit]
image: andywick/arkime-build-18:3.0.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- apt-get update
- ln -s /thirdparty .
- build: ./easybutton-build.sh --daq --pfring --rminstall
- test-capture: (cd tests ; ./tests.pl)
- export PATH=/opt/arkime/bin:/data/moloch/bin:$PATH
- npm -g config set user root
- installing: make install
- linting: npm run lint
- cp -r capture/plugins/lua/samples /opt/arkime/lua
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /opt/arkime/viewer/version.js | head -n 1`
fpm -s dir -t deb -n arkime -x opt/arkime/logs -x opt/arkime/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Arkime Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /opt/arkime
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet arkime*amd64.deb s3://files.molo.ch/arkime-${ARKIME_FILE_NAME}_ubuntu18_amd64.deb --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key arkime-${ARKIME_FILE_NAME}_ubuntu18_amd64.deb --acl public-read
fi
- build-sanitize: (cd capture; make SANITIZE_FLAGS='-DMOLOCH_USE_MALLOC -fno-common -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer' sanitize)
- install-sanitize: (cd capture; make install)
- build-sanitize-package: |
rm -f arkime*amd64.deb
fpm -s dir -t deb -n arkime -x opt/arkime/logs -x opt/arkime/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Arkime Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /opt/arkime
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet arkime*amd64.deb s3://files.molo.ch/sanitize/arkime-${ARKIME_FILE_NAME}_ubuntu18_amd64.deb --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key sanitize/arkime-${ARKIME_FILE_NAME}_ubuntu18_amd64.deb --acl public-read
fi
- build-moloch-package: |
rm -rf /data/moloch; mkdir -p /data
mv /opt/arkime /data/moloch
./easybutton-build.sh --daq --pfring --dir /data/moloch
(cd capture ; make clean; make; make install)
(cd release ; make installmoloch)
mv /data/moloch/bin/capture /data/moloch/bin/moloch-capture
/bin/cp -f viewer/version.js /data/moloch/viewer/
fpm -s dir -t deb -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Moloch Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /data/moloch
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet moloch*amd64.deb s3://files.molo.ch/moloch-${MOLOCH_FILE_NAME}_ubuntu18_amd64.deb --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key moloch-${MOLOCH_FILE_NAME}_ubuntu18_amd64.deb --acl public-read
fi
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
ubuntu-20:
requires: [~pr, ~commit]
image: andywick/arkime-build-20:3.0.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- apt-get update
- ln -s /thirdparty .
- build: ./easybutton-build.sh --daq --pfring --rminstall
- test-capture: (cd tests ; ./tests.pl)
- export PATH=/opt/arkime/bin:/data/moloch/bin:$PATH
- npm -g config set user root
- installing: make install
- linting: npm run lint
- cp -r capture/plugins/lua/samples /opt/arkime/lua
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /opt/arkime/viewer/version.js | head -n 1`
fpm -s dir -t deb -n arkime -x opt/arkime/logs -x opt/arkime/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Arkime Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /opt/arkime
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet arkime*amd64.deb s3://files.molo.ch/arkime-${ARKIME_FILE_NAME}_ubuntu20_amd64.deb --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key arkime-${ARKIME_FILE_NAME}_ubuntu20_amd64.deb --acl public-read
fi
- build-sanitize: (cd capture; make SANITIZE_FLAGS='-DMOLOCH_USE_MALLOC -fno-common -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer' sanitize)
- install-sanitize: (cd capture; make install)
- build-sanitize-package: |
rm -f arkime*amd64.deb
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /opt/arkime/viewer/version.js | head -n 1`
fpm -s dir -t deb -n arkime -x opt/arkime/logs -x opt/arkime/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Arkime Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /opt/arkime
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet arkime*amd64.deb s3://files.molo.ch/sanitize/arkime-${ARKIME_FILE_NAME}_ubuntu20_amd64.deb --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key sanitize/arkime-${ARKIME_FILE_NAME}_ubuntu20_amd64.deb --acl public-read
fi
- build-moloch-package: |
rm -rf /data/moloch; mkdir -p /data
mv /opt/arkime /data/moloch
./easybutton-build.sh --daq --pfring --dir /data/moloch
(cd capture ; make clean; make; make install)
(cd release ; make installmoloch)
mv /data/moloch/bin/capture /data/moloch/bin/moloch-capture
/bin/cp -f viewer/version.js /data/moloch/viewer/
fpm -s dir -t deb -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://moloch.com" --description "Moloch Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /data/moloch
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet moloch*amd64.deb s3://files.molo.ch/moloch-${MOLOCH_FILE_NAME}_ubuntu20_amd64.deb --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key moloch-${MOLOCH_FILE_NAME}_ubuntu20_amd64.deb --acl public-read
fi
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
arch:
requires: [~pr, ~commit]
image: andywick/arkime-build-arch:3.0.0-5
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- build: ./easybutton-build.sh --daq --pfring --rminstall
- test-capture: (cd tests ; ./tests.pl)
- export PATH=/opt/arkime/bin:$PATH
- npm -g config set user root
- installing: make install
- linting: npm run lint
- cp -r capture/plugins/lua/samples /opt/arkime/lua
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /opt/arkime/viewer/version.js | head -n 1`
/root/.gem/ruby/2.7.0/bin/fpm -s dir -t pacman -n arkime -x opt/arkime/logs -x opt/arkime/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Arkime Full Packet System" -d libmaxminddb -d libpcap -d yara /opt/arkime
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet arkime*x86_64.pkg.tar.xz s3://files.molo.ch/arkime-${ARKIME_FILE_NAME}_arch.x86_64.pkg.tar.xz --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key arkime-${ARKIME_FILE_NAME}_arch.x86_64.pkg.tar.xz --acl public-read
fi
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
centos-7-sanitize:
requires: [~pr, ~commit]
image: andywick/arkime-build-7:3.0.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- ln -s /thirdparty .
- build: scl enable devtoolset-9 rh-python36 "./easybutton-build.sh --daq --pfring --rminstall --dir /data/moloch"
- yum -y install libasan-static devtoolset-9-libasan-devel libasan4 devtoolset-9-libubsan-devel libubsan which
- build-sanitize: (cd capture; scl enable devtoolset-9 "make SANITIZE_FLAGS='-DMOLOCH_USE_MALLOC -fno-common -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer' sanitize")
- test-capture: (cd tests ; ./tests.pl)
- export PATH=/opt/arkime/bin:/data/moloch/bin:$PATH
- npm -g config set user root; npm -g config set cache-min 9999999
- installing: make install
- linting: npm run lint
- cp -r capture/plugins/lua/samples /data/moloch/lua
- run-es: (chown -R elasticsearch /elasticsearch-7.9.3; cd /elasticsearch-7.9.3 ; su elasticsearch -c "ES_JAVA_OPTS='-Xms700m -Xmx700m' bin/elasticsearch" > /tmp/es &)
- sleep 30
- cat /tmp/es
- test-viewer: (cd tests ; G_SLICE=always-malloc ./tests.pl --viewer)
- build-package: |
mv /data/moloch/bin/capture /data/moloch/bin/moloch-capture
mv /data/moloch/bin/arkime_update_geo.sh /data/moloch/bin/moloch_update_geo.sh
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /data/moloch/viewer/version.js | head -n 1 | tr "-" "_"`
scl enable rh-ruby23 'fpm -s dir -t rpm -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Moloch Full Packet System" -d perl-libwww-perl -d perl-JSON -d ethtool -d libyaml-devel -d libasan-static -d libubsan1 -d libasan5 -d perl-LWP-Protocol-https /data/moloch'
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
scl enable devtoolset-9 rh-python36 'aws s3 cp --quiet moloch*.x86_64.rpm s3://files.molo.ch/sanitize/moloch-${MOLOCH_FILE_NAME}.centos7.x86_64.rpm --acl public-read'
scl enable devtoolset-9 rh-python36 'aws s3api put-object-acl --bucket files.molo.ch --key sanitize/moloch-${MOLOCH_FILE_NAME}.centos7.x86_64.rpm --acl public-read'
fi
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
ubuntu-16-sanitize:
requires: [~pr, ~commit]
image: andywick/arkime-build-16:3.0.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- ln -s /thirdparty .
- build: ./easybutton-build.sh --daq --pfring --rminstall
- build-sanitize: (cd capture; make SANITIZE_FLAGS='-DMOLOCH_USE_MALLOC -fno-common -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer' sanitize)
- export PATH=/opt/arkime/bin:/data/moloch/bin:$PATH
- npm -g config set user root; npm -g config set cache-min 9999999
- installing: make install
- linting: npm run lint
- cp -r capture/plugins/lua/samples /opt/arkime/lua
- run-es: (chown -R elasticsearch /elasticsearch-7.9.3; cd /elasticsearch-7.9.3 ; su elasticsearch -c "ES_JAVA_OPTS='-Xms700m -Xmx700m' bin/elasticsearch" > /tmp/es &)
- test-capture: (cd tests ; ./tests.pl)
- sleep 30
- cat /tmp/es
- test-viewer: (cd tests ; G_SLICE=always-malloc ./tests.pl --viewer)
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /opt/arkime/viewer/version.js | head -n 1`
fpm -s dir -t deb -n arkime -x opt/arkime/logs -x opt/arkime/raw -v $ARKIME_VERSION --iteration $SD_BUILD_ID --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Arkime Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /opt/arkime
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
aws s3 cp --quiet arkime*amd64.deb s3://files.molo.ch/sanitize/arkime-${MOLOCH_FILE_NAME}_ubuntu16_amd64.deb --acl public-read
aws s3api put-object-acl --bucket files.molo.ch --key sanitize/arkime-${MOLOCH_FILE_NAME}_ubuntu16_amd64.deb --acl public-read
fi
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
slack:
requires: [centos-7, centos-8, ubuntu-16, ubuntu-18, ubuntu-20]
image: andywick/arkime-build-7:3.0.0-3
annotations:
beta.screwdriver.cd/cpu: LOW
beta.screwdriver.cd/ram: LOW
steps:
- slack-success: |
export ARKIME_VERSION=`grep AC_INIT configure.ac | sed "s/.*\[\(.*\)\].*$/\1/"`
echo ARKIME_VERSION: $ARKIME_VERSION
if [ "$GIT_BRANCH" = "$MOLOCH_COPY_BRANCH" ]; then
MSG=`git log -1 --format=%s`
BODY="{\"icon_emoji\": \":sushi:\", \"username\": \"MolochBuild\", \"text\":\"It worked: $GIT_BRANCH - arkime-$ARKIME_VERSION-$SD_BUILD_ID - $MSG\"}"
curl -XPOST -H "Content-type: application/json" --data "$BODY" $SLACK
fi
secrets:
- SLACK
release-build:
image: andywick/arkime-build-7:3.0.0-3
requires: []
annotations:
beta.screwdriver.cd/cpu: LOW
beta.screwdriver.cd/ram: LOW
steps:
- echo "Hi!"
release-centos-7:
requires: [release-build]
image: andywick/arkime-build-7:3.0.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- ln -s /thirdparty .
- build: scl enable devtoolset-9 rh-python36 "./easybutton-build.sh --daq --pfring --rminstall"
- export PATH=/data/moloch/bin:$PWD/node_modules/.bin:$PATH
- npm -g config set user root; npm -g config set cache-min 9999999
- installing: make install
- cp -r capture/plugins/lua/samples /data/moloch/lua
- npm install license-checker; release/notice.txt.pl /data/moloch NOTICE release/CAPTURENOTICE > /data/moloch/NOTICE.txt
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /data/moloch/viewer/version.js | head -n 1 | tr "-" "_"`
scl enable rh-ruby23 'fpm -s dir -t rpm -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $RELEASE_ITERATION --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Moloch Full Packet System" -d perl-libwww-perl -d perl-JSON -d ethtool -d libyaml-devel -d perl-LWP-Protocol-https /data/moloch'
scl enable devtoolset-9 rh-python36 'aws s3 cp moloch-${ARKIME_VERSION}-${RELEASE_ITERATION}.x86_64.rpm s3://files.molo.ch/builds/centos-7/ --acl public-read'
ls -l *.rpm
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
release-centos-8:
requires: [release-build]
image: andywick/arkime-build-8:3.0.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- ln -s /thirdparty .
- build: ./easybutton-build.sh --daq --pfring --rminstall
- export PATH=/data/moloch/bin:$PWD/node_modules/.bin:$PATH
- npm -g config set user root; npm -g config set cache-min 9999999
- installing: make install
- cp -r capture/plugins/lua/samples /data/moloch/lua
- npm install license-checker; release/notice.txt.pl /data/moloch NOTICE release/CAPTURENOTICE > /data/moloch/NOTICE.txt
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /data/moloch/viewer/version.js | head -n 1 | tr "-" "_"`
fpm -s dir -t rpm -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $RELEASE_ITERATION --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Moloch Full Packet System" -d perl-libwww-perl -d perl-JSON -d ethtool -d libyaml-devel -d perl-LWP-Protocol-https /data/moloch
aws s3 cp moloch-${ARKIME_VERSION}-${RELEASE_ITERATION}.x86_64.rpm s3://files.molo.ch/builds/centos-8/ --acl public-read
ls -l *.rpm
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
release-ubuntu-16:
requires: [release-build]
image: andywick/arkime-build-16:3.0.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- ln -s /thirdparty .
- build: ./easybutton-build.sh --daq --pfring --rminstall
- export PATH=/data/moloch/bin:$PWD/node_modules/.bin:$PATH
- npm -g config set user root; npm -g config set cache-min 9999999
- installing: make install
- cp -r capture/plugins/lua/samples /data/moloch/lua
- npm install license-checker; release/notice.txt.pl /data/moloch NOTICE release/CAPTURENOTICE > /data/moloch/NOTICE.txt
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /data/moloch/viewer/version.js | head -n 1`
fpm -s dir -t deb -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $RELEASE_ITERATION --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Moloch Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /data/moloch
aws s3 cp moloch_${ARKIME_VERSION}-${RELEASE_ITERATION}_amd64.deb s3://files.molo.ch/builds/ubuntu-16.04/ --acl public-read
ls -l *.deb
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
release-ubuntu-18:
requires: [release-build]
image: andywick/arkime-build-18:2.4.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- ln -s /thirdparty .
- build: ./easybutton-build.sh --daq --pfring --rminstall
- export PATH=/data/moloch/bin:$PWD/node_modules/.bin:$PATH
- npm -g config set user root
- installing: make install
- cp -r capture/plugins/lua/samples /data/moloch/lua
- npm install license-checker; release/notice.txt.pl /data/moloch NOTICE release/CAPTURENOTICE > /data/moloch/NOTICE.txt
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /data/moloch/viewer/version.js | head -n 1`
fpm -s dir -t deb -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $RELEASE_ITERATION --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Moloch Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /data/moloch
aws s3 cp moloch_${ARKIME_VERSION}-${RELEASE_ITERATION}_amd64.deb s3://files.molo.ch/builds/ubuntu-18.04/ --acl public-read
ls -l *.deb
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
release-ubuntu-20:
requires: [release-build]
image: andywick/arkime-build-20:2.4.0-3
steps:
- (cd / ; curl https://s3.amazonaws.com/files.molo.ch/snfmin.tar.gz | tar -zxvf -)
- ln -s /thirdparty .
- build: ./easybutton-build.sh --daq --pfring --rminstall
- export PATH=/data/moloch/bin:$PWD/node_modules/.bin:$PATH
- npm -g config set user root
- installing: make install
- cp -r capture/plugins/lua/samples /data/moloch/lua
- npm install license-checker; release/notice.txt.pl /data/moloch NOTICE release/CAPTURENOTICE > /data/moloch/NOTICE.txt
- build-package: |
export ARKIME_VERSION=`sed 's/.*"\(.*\)\".*$/\1/' /data/moloch/viewer/version.js | head -n 1`
fpm -s dir -t deb -n moloch -x data/moloch/logs -x data/moloch/raw -v $ARKIME_VERSION --iteration $RELEASE_ITERATION --template-scripts --after-install "release/afterinstall.sh" --url "https://arkime.com" --description "Arkime Full Packet System" -d libwww-perl -d libjson-perl -d ethtool -d libyaml-dev /data/moloch
aws s3 cp moloch_${ARKIME_VERSION}-${RELEASE_ITERATION}_amd64.deb s3://files.molo.ch/builds/ubuntu-20.04/ --acl public-read
ls -l *.deb
secrets:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY