forked from xrootd/xrootd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
574 lines (548 loc) · 16.5 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
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
stages:
- build:rpm
- build:dockerimage
- test
- publish
- clean
.template:deb_ubuntu_artful: &deb_ubuntu_artful_def
stage: build:rpm
image: ubuntu:artful
script:
- apt-get update
- apt-get install -y git cmake g++ debhelper devscripts equivs gdebi-core
- cp -R packaging/debian/ .
- mk-build-deps --build-dep debian/control
- gdebi -n xrootd-build-deps-depends*.deb
- version=`./genversion.sh --print-only`
- dch --create -v `echo $version | sed 's/^v\(.*\)/\1/'` --package xrootd --urgency low --distribution artful -M "This package is built and released automatically. For important notices and releases subscribe to our maling lists or visit our website."
- dpkg-buildpackage -b -us -uc -tc --buildinfo-option="-udeb_packages" --changes-option="-udeb_packages"
- mkdir artful
- cp deb_packages/*.deb artful
- cp deb_packages/*.ddeb artful
artifacts:
expire_in: 1 day
paths:
- artful/
tags:
- docker-ubuntu
.template:deb_ubuntu_xenial: &deb_ubuntu_xenial_def
stage: build:rpm
image: ubuntu:xenial
script:
- apt-get update
- apt-get install -y git cmake g++ debhelper devscripts equivs gdebi-core # pkg-create-dbgsym
- cp -R packaging/debian/ .
- mk-build-deps --build-dep debian/control
- gdebi -n xrootd-build-deps-depends*.deb
- version=`./genversion.sh --print-only`
- dch --create -v `echo $version | sed 's/^v\(.*\)/\1/'` --package xrootd --urgency low --distribution artful -M "This package is built and released automatically. For important notices and releases subscribe to our maling lists or visit our website."
- dpkg-buildpackage -b -us -uc -tc --changes-option="-udeb_packages"
- mkdir xenial
- cp deb_packages/*.deb xenial
# - cp ../*.ddeb xenial
artifacts:
expire_in: 1 day
paths:
- xenial/
tags:
- docker-ubuntu
build:cc7:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y gcc-c++ rpm-build which git
- cd packaging/
- ./makesrpm.sh
- yum-builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir cc-7/
- cp packaging/*.src.rpm cc-7
- cp packaging/RPMS/* cc-7
artifacts:
expire_in: 1 day
paths:
- cc-7/
tags:
- docker-cc7
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
build:cc7:ceph:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y gcc-c++ rpm-build which git yum-plugin-priorities sssd-client sudo createrepo
- cd packaging/
- ./makesrpm.sh --define '_with_ceph11 1'
- echo -e '[ceph]\nname=ceph\nbaseurl=http://linuxsoft.cern.ch/mirror/download.ceph.com/rpm-luminous/el7/x86_64/\npriority=4\ngpgcheck=0\nenabled=1\n' >> /etc/yum.repos.d/ceph.repo
- yum-builddep --nogpgcheck -y *.src.rpm
- rpmbuild --rebuild --define="_with_ceph11 1" --define "_rpmdir RPMS/" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- repo=/eos/project/s/storage-ci/www/xrootd/ceph/cc-7/x86_64/$(date +'%Y%m%d')
- sudo -u stci -H mkdir -p $repo
- sudo -u stci -H find $repo -type f -name '*.rpm' -delete
- sudo -u stci -H cp *.src.rpm $repo
- sudo -u stci -H cp RPMS/* $repo
- sudo -u stci -H createrepo --update -q $repo
tags:
- docker-slc6
only:
- master
except:
- tags
- schedules
build:slc6:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/slc6-base
script:
- yum install --nogpg -y gcc-c++ rpm-build which tar git
- cd packaging/
- ./makesrpm.sh
- yum-builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir slc-6
- cp packaging/*.src.rpm slc-6
- cp packaging/RPMS/* slc-6
artifacts:
expire_in: 1 day
paths:
- slc-6/
tags:
- docker-slc6
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
build:fedora-rawhide:
stage: build:rpm
image: fedora:rawhide
script:
- dnf install --nogpg -y gcc-c++ rpm-build which tar dnf-plugins-core git
- cd packaging/
- ./makesrpm.sh
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir fc-rawhide
- cp packaging/*.src.rpm fc-rawhide
- cp packaging/RPMS/* fc-rawhide
artifacts:
expire_in: 1 day
paths:
- fc-rawhide/
tags:
- docker-fc_rawhide
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
build:fedora-26:
stage: build:rpm
image: fedora:26
script:
- dnf install --nogpg -y gcc-c++ rpm-build which tar dnf-plugins-core git
- cd packaging/
- ./makesrpm.sh
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir fc-26/
- cp packaging/*.src.rpm fc-26
- cp packaging/RPMS/* fc-26
artifacts:
expire_in: 1 day
paths:
- fc-26/
tags:
- docker-fc_rawhide
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
build:fedora-25:
stage: build:rpm
image: fedora:25
script:
- dnf install --nogpg -y gcc-c++ rpm-build which tar dnf-plugins-core git
- cd packaging/
- ./makesrpm.sh
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir fc-25/
- cp packaging/*.src.rpm fc-25
- cp packaging/RPMS/* fc-25
artifacts:
expire_in: 1 day
paths:
- fc-25/
tags:
- docker-fc25
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
build:fedora-24:
stage: build:rpm
image: fedora:24
script:
- dnf install --nogpg -y gcc-c++ rpm-build which tar dnf-plugins-core git
- cd packaging/
- ./makesrpm.sh
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir fc-24/
- cp packaging/*.src.rpm fc-24
- cp packaging/RPMS/* fc-24
artifacts:
expire_in: 1 day
paths:
- fc-24/
tags:
- docker-fc25
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
build:deb_ubuntu_artful:
<<: *deb_ubuntu_artful_def
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
build:deb_ubuntu_xenial:
<<: *deb_ubuntu_xenial_def
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
build:macosx:
stage: build:rpm
script:
- mkdir build
- mkdir -p tarball/xrootd
- cd build
- /usr/local/bin/cmake -D ZLIB_INCLUDE_DIR=/usr/local/Cellar/zlib/1.2.8/include/ -D OPENSSL_INCLUDE_DIR=/usr/local/Cellar/openssl/1.0.2g/include/ -DCMAKE_INSTALL_PREFIX=../tarball/xrootd ..
- make
- make install
- cd ../tarball
- tar -zcf xrootd.tar.gz xrootd
- cd ..
- mkdir osx
- cp tarball/xrootd.tar.gz osx
artifacts:
expire_in: 1 day
paths:
- osx/
tags:
- macosx-shell
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
release:cc7-x86_64:
stage: build:rpm
script:
- mkdir cc-7-x86_64
- git archive --prefix=xrootd-${CI_COMMIT_TAG#"v"}/ --format=tar tags/$CI_COMMIT_TAG | gzip -9fn > xrootd-${CI_COMMIT_TAG#"v"}.tar.gz
- mv xrootd-${CI_COMMIT_TAG#"v"}.tar.gz cc-7-x86_64
- cd packaging/
- ./makesrpm.sh
- /bin/mock --init -r epel-7-x86_64 --rebuild xrootd-*.src.rpm --resultdir ./build/ --define="_with_tests 1" --define="_without_xrootd_user 1" -D "dist .el7"
- cd ..
- cp packaging/build/*.rpm cc-7-x86_64
artifacts:
expire_in: 1 day
paths:
- cc-7-x86_64/
tags:
- xrootd-shell
only:
- web
except:
- branches
- /^(?!v[0-9]+).*/
release:slc6-x86_64:
stage: build:rpm
script:
- cd packaging/
- ./makesrpm.sh
- /bin/mock --init -r epel-6-x86_64 --rebuild xrootd-*.src.rpm --resultdir ./build/ --define="_with_tests 1" --define="_without_xrootd_user 1" -D "dist .el6"
- cd ..
- mkdir slc-6-x86_64
- cp packaging/build/*.rpm slc-6-x86_64
artifacts:
expire_in: 1 day
paths:
- slc-6-x86_64/
tags:
- xrootd-shell
only:
- web
except:
- branches
- /^(?!v[0-9]+).*/
release:slc6-i386:
stage: build:rpm
script:
- cd packaging/
- ./makesrpm.sh
- /bin/mock --init -r epel-6-i386 --rebuild xrootd-*.src.rpm --resultdir ./build/ --define="_with_tests 1" --define="_without_xrootd_user 1" -D "dist .el6"
- cd ..
- mkdir slc-6-i386
- cp packaging/build/*.rpm slc-6-i386
artifacts:
expire_in: 1 day
paths:
- slc-6-i386/
tags:
- xrootd-shell
only:
- web
except:
- branches
- /^(?!v[0-9]+).*/
release:cc7:ceph:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y gcc-c++ rpm-build which git yum-plugin-priorities sssd-client sudo createrepo
- cd packaging/
- ./makesrpm.sh --define '_with_ceph11 1'
- echo -e '[ceph]\nname=ceph\nbaseurl=http://linuxsoft.cern.ch/mirror/download.ceph.com/rpm-luminous/el7/x86_64/\npriority=4\ngpgcheck=0\nenabled=1\n' >> /etc/yum.repos.d/ceph.repo
- yum-builddep --nogpgcheck -y *.src.rpm
- rpmbuild --rebuild --define="_with_ceph11 1" --define "_rpmdir RPMS/" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- repo=/eos/project/s/storage-ci/www/xrootd/ceph-release/cc-7/x86_64/
- sudo -u stci -H mkdir -p $repo
- sudo -u stci -H cp *.src.rpm $repo
- sudo -u stci -H cp RPMS/* $repo
- sudo -u stci -H createrepo --update -q $repo
tags:
- docker-cc7
only:
- tags
when: manual
release:deb_ubuntu_artful:
<<: *deb_ubuntu_artful_def
only:
- web
except:
- branches
- /^(?!v[0-9]+).*/
release:deb_ubuntu_xenial:
<<: *deb_ubuntu_xenial_def
only:
- web
except:
- branches
- /^(?!v[0-9]+).*/
biweekly:cc7:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y gcc-c++ rpm-build which git cppunit-devel
- xrootd_version=$(git tag | grep '^v' | grep -v 'rc.*$' | grep -v 'CERN$' | sed -e '$!d')
- xrootd_version=${xrootd_version:1}
- short_hash=$(git rev-parse --verify HEAD | awk '{print substr($0, 0, 8)}')
- a=( ${xrootd_version//./ } )
- ((a[2]++)) || true
- experimental_version="${a[0]}.${a[1]}.${a[2]}-0.experimental."${CI_PIPELINE_ID}.$short_hash
- cd packaging/
- ./makesrpm.sh --version $experimental_version
- yum-builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_tests 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir epel-7/
- cp packaging/*.src.rpm epel-7
- cp packaging/RPMS/* epel-7
artifacts:
expire_in: 1 day
paths:
- epel-7/
tags:
- docker-cc7
only:
- schedules
except:
- tags
biweekly:slc6:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/slc6-base
script:
- yum install --nogpg -y gcc-c++ rpm-build which tar git cppunit-devel
- xrootd_version=$(git tag | grep '^v' | grep -v 'rc.*$' | grep -v 'CERN$' | sed -e '$!d')
- xrootd_version=${xrootd_version:1}
- short_hash=$(git rev-parse --verify HEAD | awk '{print substr($0, 0, 8)}')
- a=( ${xrootd_version//./ } )
- ((a[2]++)) || true
- experimental_version="${a[0]}.${a[1]}.${a[2]}-0.experimental."${CI_PIPELINE_ID}.$short_hash
- cd packaging/
- ./makesrpm.sh --version $experimental_version
- yum-builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_tests 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir epel-6/
- cp packaging/*.src.rpm epel-6
- cp packaging/RPMS/* epel-6
artifacts:
expire_in: 1 day
paths:
- epel-6/
tags:
- docker-slc6
only:
- schedules
except:
- tags
publish:rhel:
stage: publish
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y sssd-client sudo createrepo
- prefix=/eos/project/s/storage-ci/www/xrootd
- "for platform in cc-7 slc-6 fc-rawhide fc-26 fc-25 fc-24; do
repo=$prefix/${CI_COMMIT_REF_NAME}/$platform/x86_64
path=$repo/$(date +'%Y%m%d');
sudo -u stci -H mkdir -p $path;
sudo -u stci -H find ${path} -type f -name '*.rpm' -delete;
sudo -u stci -H cp $platform/* $path;
sudo -u stci -H createrepo --update -q $path;
sudo -u stci -H createrepo --update -q $repo;
done"
tags:
- docker-slc6
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
publish:debian:
stage: publish
image: ubuntu:artful
script:
- apt-get update
- apt-get install -y sudo apt-utils sssd
- mkdir /home/stci
- chown -R stci:def-cg /home/stci
- chmod -R 700 /home/stci
- sudo -u stci -H gpg --homedir /home/stci/ --allow-secret-key-import --import /keys/stci-debian-repo.sec
- sudo -u stci -H ./packaging/debian_scripts/publish_debian_cern.sh ${CI_COMMIT_REF_NAME}
tags:
- docker-ubuntu
dependencies:
- build:deb_ubuntu_artful
- build:deb_ubuntu_xenial
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
publish:rhel:release:
stage: publish
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y sssd-client sudo createrepo
- prefix=/eos/project/s/storage-ci/www/xrootd
- tarball=cc-7-x86_64/xrootd-*.tar.gz
- "for platform in cc-7-x86_64 slc-6-x86_64 slc-6-i386; do
path=$prefix/release/$platform/$CI_COMMIT_TAG/;
sudo -u stci -H mkdir -p $path/{source,tarball};
sudo -u stci -H cp $platform/*.rpm $path;
sudo -u stci -H find ${path} -type f -name '*.src.rpm' -delete;
sudo -u stci -H cp $platform/*.src.rpm $path/source;
sudo -u stci -H cp $tarball $path/tarball;
sudo -u stci -H createrepo --update -q $path;
sudo -u stci -H createrepo --update -q $prefix/release/$platform;
done"
tags:
- docker-slc6
only:
- web
except:
- branches
- /^(?!v[0-9]+).*/
publish:debian:release:
stage: publish
image: ubuntu:artful
script:
- apt-get update
- apt-get install -y sudo apt-utils sssd
- mkdir /home/stci
- chown -R stci:def-cg /home/stci
- chmod -R 700 /home/stci
- sudo -u stci -H gpg --homedir /home/stci/ --allow-secret-key-import --import /keys/stci-debian-repo.sec
- sudo -u stci -H ./packaging/debian_scripts/publish_debian_cern.sh release
tags:
- docker-ubuntu
dependencies:
- release:deb_ubuntu_artful
- release:deb_ubuntu_xenial
only:
- web
except:
- branches
- /^(?!v[0-9]+).*/
publish:biweekly:
stage: publish
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y sssd-client sudo createrepo
- prefix=/eos/project/s/storage-ci/www/xrootd
- "for platform in epel-7 epel-6; do
path=$prefix/experimental/$platform/x86_64/;
sudo -u stci -H mkdir -p $path;
sudo -u stci -H cp $platform/* $path;
sudo -u stci -H createrepo --update -q $path;
done"
tags:
- docker-slc6
dependencies:
- biweekly:cc7
- biweekly:slc6
only:
- schedules
except:
- tags
clean:artifacts:
stage: clean
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y sssd-client sudo createrepo
- sudo -u stci -H bash -c 'for commit_dir in /eos/project/s/storage-ci/www/xrootd/stable-*/*/*/; do find ${commit_dir} -type f -name '"'"'*.rpm'"'"' -mtime +30 -delete; createrepo --update -q ${commit_dir}; done'
- sudo -u stci -H bash -c 'for commit_dir in /eos/project/s/storage-ci/www/xrootd/experimental/*/x86_64/; do find ${commit_dir} -type f -name '"'"'*.rpm'"'"' -mtime +30 -delete; createrepo --update -q ${commit_dir}; done'
tags:
- docker-slc6
allow_failure: true
only:
- schedules