forked from xrootd/xrootd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
642 lines (607 loc) · 19.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
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
stages:
- build:rpm
- build:dockerimage:prepare
- build:dockerimage
- test
- publish
- clean
.template:deb_ubuntu_bionic: &deb_ubuntu_bionic_def
stage: build:rpm
image: ubuntu:bionic
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 bionic -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 bionic
- cp deb_packages/*.deb bionic
- cp deb_packages/*.ddeb bionic
artifacts:
expire_in: 1 day
paths:
- bionic/
tags:
- docker_node
.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 xenial -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_node
build:cc7:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y gcc-c++ rpm-build which git python-srpm-macros
- cd packaging/
- ./makesrpm.sh --define "_with_python3 1" --define "_with_tests 1" --define "_with_xrdclhttp 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 "_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
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 python-srpm-macros
- cd packaging/
- ./makesrpm.sh --define "_with_python3 1"
- yum-builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --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_node
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 --define "_with_python3 1" --define "_with_xrdclhttp 1"
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_xrdclhttp 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
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 --define "_with_python3 1" --define "_with_xrdclhttp 1"
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_xrdclhttp 1" --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_node
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 --define "_with_python3 1" --define "_with_xrdclhttp 1"
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_xrdclhttp 1" --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_node
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 --define "_with_python3 1" --define "_with_xrdclhttp 1"
- dnf builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_python3 1" --define "_with_xrdclhttp 1" --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_node
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
build:deb_ubuntu_bionic:
<<: *deb_ubuntu_bionic_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.2o_2/include/ -D OPENSSL_SSL_LIBRARY=/usr/local/Cellar/openssl/1.0.2o_2/lib/libssl.dylib -D OPENSSL_CRYPTO_LIBRARY=/usr/local/Cellar/openssl/1.0.2o_2/lib/libcrypto.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
allow_failure: true
release:cc7-x86_64:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y gcc-c++ rpm-build which git python-srpm-macros
- 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/
- 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" -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 "_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:slc6-x86_64:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/slc6-base
script:
- yum install --nogpg -y gcc-c++ rpm-build which git tar python-srpm-macros
- mkdir slc-6-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" -D "dist .el6"
- 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 "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" -D "dist .el6" *.src.rpm
- cd ..
- cp packaging/RPMS/*.rpm slc-6-x86_64
- cp packaging/*src.rpm slc-6-x86_64
artifacts:
expire_in: 1 day
paths:
- slc-6-x86_64/
tags:
- docker_node
only:
- web
except:
- branches
release:deb_ubuntu_bionic:
<<: *deb_ubuntu_bionic_def
only:
- web
except:
- branches
release:deb_ubuntu_xenial:
<<: *deb_ubuntu_xenial_def
only:
- web
except:
- branches
release:pypi:
stage: build:rpm
image: gitlab-registry.cern.ch/linuxsupport/cc7-base
script:
- yum install --nogpg -y git python-pip which
- pip install setuptools --upgrade
- 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: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 python-srpm-macros
- 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 --define "_with_python3 1" --define "_with_xrdclhttp 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 "_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
except:
- tags
weekly: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 python-srpm-macros
- 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 --define "_with_python3 1"
- yum-builddep --nogpgcheck -y *.src.rpm
- mkdir RPMS
- rpmbuild --rebuild --define "_rpmdir RPMS/" --define "_with_tests 1" --define "_with_python3 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_node
only:
- schedules
except:
- tags
xrootd_docker_get:
stage: build:dockerimage:prepare
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:
- schedules
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
xrootd_docker_test:
stage: test
script:
- docker pull gitlab-registry.cern.ch/dss/xrootd
- sudo ./xrootd-docker/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
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
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
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 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_node
only:
- master
- /^stable-.*$/
except:
- tags
- schedules
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_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; 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
- sudo -u stci -H ./packaging/debian_scripts/publish_debian_cern.sh release
tags:
- docker_node
dependencies:
- release:deb_ubuntu_bionic
- release:deb_ubuntu_xenial
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-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_node
dependencies:
- weekly:cc7
- weekly: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/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