forked from xrootd/xrootd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
820 lines (779 loc) · 25.4 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
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
stages:
- build:rpm
- build:dockerimage:prepare
- build:dockerimage
- test
- publish
- post:publish
- clean
.template:deb_ubuntu_build: &deb_ubuntu_build_def
stage: build:rpm
script:
- export DEBIAN_FRONTEND=noninteractive
- 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 ${DIST} -M "This package is built and released automatically. For important notices and releases subscribe to our maling lists or visit our website."
- dpkg_version=`dpkg-query --showformat='${Version}' --show dpkg`
- rc=0 ; dpkg --compare-versions $dpkg_version "ge" "1.18.11" || rc=$?
- if [ $rc -eq "0" ]; then
dpkg-buildpackage -b -us -uc -tc --buildinfo-option="-udeb_packages" --changes-option="-udeb_packages" ;
else
dpkg-buildpackage -b -us -uc -tc --changes-option="-udeb_packages" ;
fi
- mkdir ${DIST}/
- cp deb_packages/*.deb ${DIST}/
- if [[ $DEBUG = "true" ]] ; then cp deb_packages/*.ddeb ${DIST}/; fi
artifacts:
expire_in: 1 day
paths:
- ${DIST}/
tags:
- docker_node
build:cs9:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cs9-base
script:
- dnf install -y epel-release
- dnf install --nogpg -y gcc-c++ rpm-build tar dnf-plugins-core git
- dnf install -y cppunit-devel
- cd packaging/
- ./makesrpm.sh --define "_with_python3 1" --define "_with_tests 1" --define "_without_xrootd_user 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" -D "dist .el9"
- dnf builddep --nogpgcheck -y *.src.rpm
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_tests 1" --define "_without_xrootd_user 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" -D "dist .el9" *.src.rpm
- cd ..
- mkdir cs-9
- cp packaging/RPMS/*.rpm cs-9
- cp packaging/*src.rpm cs-9
artifacts:
expire_in: 1 day
paths:
- cs-9/
tags:
- docker_node
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
allow_failure: true
build:cs8:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cs8-base
script:
- dnf install -y epel-release
- dnf install --nogpg -y gcc-c++ rpm-build tar dnf-plugins-core git
- dnf config-manager --set-enabled powertools
- cd packaging
- ./makesrpm.sh --define "_with_python3 1" --define "_with_tests 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1"
- dnf builddep --nogpgcheck -y *.src.rpm
- dnf -y update libarchive
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_tests 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir cs-8
- cp packaging/*.src.rpm cs-8
- cp packaging/RPMS/* cs-8
artifacts:
expire_in: 1 day
paths:
- cs-8/
tags:
- docker_node
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
build:cc7:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- head -n -6 /etc/yum.repos.d/epel.repo > /tmp/epel.repo ; mv -f /tmp/epel.repo /etc/yum.repos.d/epel.repo
- yum install --nogpg -y gcc-c++ rpm-build git python-srpm-macros centos-release-scl
- cd packaging/
- ./makesrpm.sh --define "_with_python3 1" --define "_with_tests 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1"
- yum-builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_tests 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1" --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_node
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
#build:fedora-36:
# stage: build:rpm
# image: fedora:36
# script:
# - dnf install --nogpg -y gcc-c++ rpm-build tar dnf-plugins-core git
# - cd packaging/
# - ./makesrpm.sh --define "_with_python3 1" --define "_with_xrdclhttp 1" --define "_with_ceph11 1"
# - dnf builddep --nogpgcheck -y *.src.rpm
# - mkdir RPMS
# - rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_xrdclhttp 1" --define "_with_ceph11 1" --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_node
# only:
# - master
# - /^stable-.*$/
# except:
# - tags
# - schedules
# - web
build:fedorai-35:
stage: build:rpm
image: fedora:35
script:
- dnf install --nogpg -y gcc-c++ rpm-build tar dnf-plugins-core git
- cd packaging/
- ./makesrpm.sh --define "_with_python3 1" --define "_with_ceph11 1"
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_ceph11 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir fc-35/
- cp packaging/*.src.rpm fc-35
- cp packaging/RPMS/* fc-35
artifacts:
expire_in: 1 day
paths:
- fc-35/
tags:
- docker_node
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
build:fedora-34:
stage: build:rpm
image: fedora:34
script:
- dnf install --nogpg -y gcc-c++ rpm-build tar dnf-plugins-core git
- cd packaging/
- ./makesrpm.sh --define "_with_python3 1" --define "_with_xrdclhttp 1" --define "_with_ceph11 1"
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_xrdclhttp 1" --define "_with_ceph11 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir fc-34/
- cp packaging/*.src.rpm fc-34
- cp packaging/RPMS/* fc-34
artifacts:
expire_in: 1 day
paths:
- fc-34/
tags:
- docker_node
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
build:fedora-33:
stage: build:rpm
image: fedora:33
script:
- dnf install --nogpg -y gcc-c++ rpm-build tar dnf-plugins-core git
- cd packaging/
- ./makesrpm.sh --define "_with_python3 1" --define "_with_xrdclhttp 1" --define "_with_ceph11 1"
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_xrdclhttp 1" --define "_with_ceph11 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir fc-33/
- cp packaging/*.src.rpm fc-33
- cp packaging/RPMS/* fc-33
artifacts:
expire_in: 1 day
paths:
- fc-33/
tags:
- docker_node
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
build:deb_ubuntu_bionic:
image: ubuntu:bionic
<<: *deb_ubuntu_build_def
variables:
DIST: bionic
DEBUG: "true"
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
build:deb_ubuntu_focal:
image: ubuntu:focal
<<: *deb_ubuntu_build_def
variables:
DIST: focal
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
build:deb_ubuntu_jammy:
image: ubuntu:jammy
<<: *deb_ubuntu_build_def
variables:
DIST: jammy
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
allow_failure: true
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.2t/include/ -D OPENSSL_SSL_LIBRARY=/usr/local/Cellar/openssl/1.0.2t/lib/libssl.dylib -D OPENSSL_CRYPTO_LIBRARY=/usr/local/Cellar/openssl/1.0.2t/lib/libcrypto.1.0.0.dylib -DCMAKE_INSTALL_PREFIX=../tarball/xrootd ..
- cd src/XrdCl/
- make -j4
- 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
- web
allow_failure: true
release:cs8-x86_64:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cs8-base
script:
- dnf install -y epel-release
- dnf install --nogpg -y gcc-c++ rpm-build tar dnf-plugins-core git python-macros
- dnf config-manager --set-enabled powertools
- dnf install -y cppunit-devel
- dnf -y update libarchive
- mkdir cs-8-x86_64
- ./gen-tarball.sh $CI_COMMIT_TAG
- mv xrootd-${CI_COMMIT_TAG#"v"}.tar.gz cs-8-x86_64
- cd packaging/
- git checkout tags/${CI_COMMIT_TAG}
- ./makesrpm.sh --define "_with_python3 1" --define "_with_tests 1" --define "_without_xrootd_user 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1" -D "dist .el8"
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_tests 1" --define "_without_xrootd_user 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" -D "dist .el8" *.src.rpm
- cd ..
- cp packaging/RPMS/*.rpm cs-8-x86_64
- cp packaging/*src.rpm cs-8-x86_64
artifacts:
expire_in: 1 day
paths:
- cs-8-x86_64/
tags:
- docker_node
only:
- web
except:
- branches
release:rocky8-x86_64:
stage: build:rpm
image: rockylinux:8
script:
- dnf install -y epel-release
- dnf install --nogpg -y gcc-c++ rpm-build tar dnf-plugins-core git python-macros
- dnf config-manager --set-enabled powertools
- dnf install -y cppunit-devel
- dnf -y update libarchive
- mkdir rocky-8-x86_64
- ./gen-tarball.sh $CI_COMMIT_TAG
- mv xrootd-${CI_COMMIT_TAG#"v"}.tar.gz cs-8-x86_64
- cd packaging/
- git checkout tags/${CI_COMMIT_TAG}
- ./makesrpm.sh --define "_with_python3 1" --define "_with_tests 1" --define "_without_xrootd_user 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1" -D "dist .el8"
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_tests 1" --define "_without_xrootd_user 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" -D "dist .el8" *.src.rpm
- cd ..
- cp packaging/RPMS/*.rpm rocky-8-x86_64
- cp packaging/*src.rpm rocky-8-x86_64
artifacts:
expire_in: 1 day
paths:
- rocky-8-x86_64/
tags:
- docker_node
only:
- web
except:
- branches
release:cc7-x86_64:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- head -n -6 /etc/yum.repos.d/epel.repo > /tmp/epel.repo ; mv -f /tmp/epel.repo /etc/yum.repos.d/epel.repo
- yum install --nogpg -y gcc-c++ rpm-build git python-srpm-macros centos-release-scl
- mkdir cc-7-x86_64
- ./gen-tarball.sh $CI_COMMIT_TAG
- mv xrootd-${CI_COMMIT_TAG#"v"}.tar.gz cc-7-x86_64
- cd packaging/
- git checkout tags/${CI_COMMIT_TAG}
- ./makesrpm.sh --define "_with_python3 1" --define "_with_tests 1" --define "_without_xrootd_user 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1" -D "dist .el7"
- yum-builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_tests 1" --define "_without_xrootd_user 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" -D "dist .el7" *.src.rpm
- cd ..
- cp packaging/RPMS/*.rpm cc-7-x86_64
- cp packaging/*src.rpm cc-7-x86_64
artifacts:
expire_in: 1 day
paths:
- cc-7-x86_64/
tags:
- docker_node
only:
- web
except:
- branches
release:deb_ubuntu_bionic:
image: ubuntu:bionic
<<: *deb_ubuntu_build_def
variables:
DIST: bionic
DEBUG: "true"
only:
- web
except:
- branches
release:deb_ubuntu_focal:
image: ubuntu:focal
<<: *deb_ubuntu_build_def
variables:
DIST: focal
only:
- web
except:
- branches
release:deb_ubuntu_jammy:
image: ubuntu:jammy
<<: *deb_ubuntu_build_def
variables:
DIST: jammy
only:
- web
except:
- branches
allow_failure: true
release:pypi:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y git python3-pip
- cp packaging/wheel/* .
- ./publish.sh
artifacts:
expire_in: 1 day
paths:
- dist/
tags:
- docker_node
only:
- web
except:
- branches
allow_failure: true
publish:pypi:
stage: publish
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y sssd-client sudo
- sudo -u stci -H mkdir -p /eos/project/s/storage-ci/www/xrootd/release/pypi-dist
- sudo -u stci -H cp dist/*.tar.gz /eos/project/s/storage-ci/www/xrootd/release/pypi-dist/.
tags:
- docker_node
only:
- web
except:
- branches
allow_failure: true
weekly:cs8:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cs8-base
script:
- dnf install -y epel-release
- dnf install --nogpg -y gcc-c++ rpm-build tar dnf-plugins-core git python-macros
- dnf config-manager --set-enabled powertools
- dnf install -y cppunit-devel
- dnf -y update libarchive
- xrootd_version=$(git for-each-ref --sort=taggerdate --format '%(refname)' refs/tags | grep '^refs/tags/v' | grep -v 'rc.*$' | grep -v 'osghotfix' | grep -v 'CERN$' | sed -e '$!d')
- xrootd_version=${xrootd_version:11}
- 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 --define "_with_python3 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1"
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_tests 1" --define "_with_python3 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" *.src.rpm
- cd ..
- mkdir epel-8/
- cp packaging/*.src.rpm epel-8
- cp packaging/RPMS/* epel-8
artifacts:
expire_in: 1 day
paths:
- epel-8/
tags:
- docker_node
only:
- schedules
except:
- tags
weekly:cc7:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- head -n -6 /etc/yum.repos.d/epel.repo > /tmp/epel.repo ; mv -f /tmp/epel.repo /etc/yum.repos.d/epel.repo
- yum install --nogpg -y gcc-c++ rpm-build git cppunit-devel python-srpm-macros centos-release-scl
- xrootd_version=$(git for-each-ref --sort=taggerdate --format '%(refname)' refs/tags | grep '^refs/tags/v' | grep -v 'rc.*$' | grep -v 'osghotfix' | grep -v 'CERN$' | sed -e '$!d')
- xrootd_version=${xrootd_version:11}
- echo $xrootd_version
- short_hash=$(git rev-parse --verify HEAD | awk '{print substr($0, 0, 8)}')
- a=( ${xrootd_version//./ } )
- ((a[2]++)) || true
- echo $CI_PIPELINE_ID
- experimental_version="${a[0]}.${a[1]}.${a[2]}-0.experimental."${CI_PIPELINE_ID}.$short_hash
- echo $experimental_version
- cd packaging/
- ./makesrpm.sh --version $experimental_version --define "_with_python3 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 1"
- yum-builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_tests 1" --define "_with_python3 1" --define "_with_xrdclhttp 1" --define "_with_scitokens 1" --define "_with_isal 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_node
only:
- schedules
- web
except:
- tags
xrootd_docker_get:
stage: build:dockerimage:prepare
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y git
- git clone https://gitlab.cern.ch/eos/xrootd-docker.git
- if [ ! -d "epel-7" ]; then mkdir epel-7; cp cc-7/* epel-7; fi
artifacts:
expire_in: 1 day
paths:
- xrootd-docker/
- epel-7/
tags:
- docker_node
only:
- web
- schedules
except:
- tags
xrootd_dockerimage:
stage: build:dockerimage
tags:
- docker-image-build
script:
- ""
variables:
TO: gitlab-registry.cern.ch/dss/xrootd
DOCKER_FILE: xrootd-docker/Dockerfile.ci
dependencies:
- xrootd_docker_get
only:
- schedules
- web
except:
- tags
xrootd_docker_test:
stage: test
script:
- docker pull gitlab-registry.cern.ch/dss/xrootd
- cd xrootd-docker
- yum -y install wget
- sudo ./start.sh -i gitlab-registry.cern.ch/dss/xrootd
- docker exec metaman text-runner /usr/lib64/libXrdClTests.so "All Tests/UtilsTest/"
- docker exec metaman text-runner /usr/lib64/libXrdClTests.so "All Tests/SocketTest/"
- docker exec metaman text-runner /usr/lib64/libXrdClTests.so "All Tests/PollerTest/"
- docker exec metaman text-runner /usr/lib64/libXrdClTests.so "All Tests/PostMasterTest/"
- docker exec metaman text-runner /usr/lib64/libXrdClTests.so "All Tests/FileSystemTest/"
## - docker exec metaman text-runner /usr/lib64/libXrdClTests.so "All Tests/FileTest/"
- docker exec metaman text-runner /usr/lib64/libXrdClTests.so "All Tests/LocalFileHandlerTest/"
after_script:
- sudo ./xrootd-docker/clean.sh
tags:
- shell-with-docker
dependencies:
- xrootd_docker_get
only:
- schedules
- web
except:
- tags
allow_failure: true
pyxrootd_dockerimage:
stage: build:dockerimage
tags:
- docker-image-build
script:
- ""
variables:
TO: gitlab-registry.cern.ch/dss/xrootd:pylatest
DOCKER_FILE: xrootd-docker/Dockerfile-python.ci
dependencies:
- xrootd_docker_get
only:
- schedules
- web
except:
- tags
allow_failure: true
pyxrootd_docker_test:
stage: test
script:
- docker pull gitlab-registry.cern.ch/dss/xrootd:pylatest
- sudo docker run -dit --privileged -e "container=docker" --name pyxrootd-container -h pyxrootd-container gitlab-registry.cern.ch/dss/xrootd:pylatest /sbin/init
- docker exec pyxrootd-container systemctl start xrootd@standalone
- docker exec pyxrootd-container sh -c "cd xrootd/bindings/python/tests && pytest test_file.py test_filesystem.py test_copy.py test_threads.py test_url.py"
after_script:
- sudo docker rm -f pyxrootd-container
- sudo docker rmi -f gitlab-registry.cern.ch/dss/xrootd:pylatest
tags:
- shell-with-docker
dependencies:
- xrootd_docker_get
only:
- schedules
- web
except:
- tags
allow_failure: true
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 cs-8 cc-7 fc-35 fc-34 fc-33; 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_node
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
publish:debian:
stage: publish
image: ubuntu:bionic
script:
- apt-get update
- apt-get install -y sudo apt-utils sssd gpg
- 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_node
dependencies:
- build:deb_ubuntu_bionic
- build:deb_ubuntu_focal
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
- web
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 rocky-8-x86_64 cs-8-x86_64 cc-7-x86_64; 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_node
only:
- web
except:
- branches
publish:debian:release:
stage: publish
image: ubuntu:bionic
script:
- apt-get update
- apt-get install -y sudo apt-utils sssd gpg
- 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
- repo=release
- if [[ $CI_COMMIT_TAG == *rc* ]] ; then repo=testing ; fi
- sudo -u stci -H ./packaging/debian_scripts/publish_debian_cern.sh $repo
tags:
- docker_node
dependencies:
- release:deb_ubuntu_bionic
- release:deb_ubuntu_focal
only:
- web
except:
- branches
publish:weekly:
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-8 epel-7 epel-6; do
if [ -d $platform ] ; then
path=$prefix/experimental/$platform/x86_64/;
sudo -u stci -H mkdir -p $path;
ls -latr $platform/;
echo $path;
sudo -u stci -H cp $platform/* $path;
sudo -u stci -H createrepo --update -q $path;
fi;
done"
tags:
- docker_node
dependencies:
- weekly:cc7
- weekly:cs8
only:
- schedules
- web
except:
- tags
publish:koji:cs8:
stage: post:publish
image: gitlab-registry.cern.ch/linuxsupport/rpmci/kojicli
script:
- yum install --nogpg -y sssd-client
- kinit stci@CERN.CH -k -t /stci.krb5/stci.keytab
- path=/eos/project/s/storage-ci/www/xrootd/release/cs-8-x86_64/$CI_COMMIT_TAG/source/
- if [[ $CI_COMMIT_TAG != *rc* ]] ; then koji build eos8 $path/*.src.rpm ; else stat $path/*.src.rpm ; fi
tags:
- docker_node
only:
- web
except:
- branches
when: manual
publish:koji:cc7:
stage: post:publish
image: gitlab-registry.cern.ch/linuxsupport/rpmci/kojicli
script:
- yum install --nogpg -y sssd-client
- kinit stci@CERN.CH -k -t /stci.krb5/stci.keytab
- path=/eos/project/s/storage-ci/www/xrootd/release/cc-7-x86_64/$CI_COMMIT_TAG/source/
- if [[ $CI_COMMIT_TAG != *rc* ]] ; then koji build eos7 $path/*.src.rpm ; else stat $path/*.src.rpm ; fi
tags:
- docker_node
only:
- web
except:
- branches
when: manual
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/master/*/*/; do find ${commit_dir} -mindepth 1 -maxdepth 1 -type d -ctime +10 | xargs rm -rf; createrepo --update -q ${commit_dir}; done'
- 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_node
allow_failure: true
only:
- schedules
- web
except:
- tags