-
Notifications
You must be signed in to change notification settings - Fork 277
/
packager.sh
executable file
·1589 lines (1380 loc) · 52.9 KB
/
packager.sh
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
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
#
# packager.sh Copyright (C) 2014-2019 GEM Foundation
#
# OpenQuake is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OpenQuake is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with OpenQuake. If not, see <http://www.gnu.org/licenses/>.
#
# DESCRIPTION
#
# packager.sh automates procedures to:
# - test sources
# - build Ubuntu package (official or development version)
# - test Ubuntu package
#
# tests are performed inside linux containers (lxc) to achieve
# a good compromise between speed and isolation
#
# all lxc instances are ephemeral
#
# ephemeral containers are "clones" of a base container and have a
# temporary file system that reflects the contents of the base container
# but any modifications are stored in an overlayed, in-memory
# file system
#
if [ -n "$GEM_SET_DEBUG" -a "$GEM_SET_DEBUG" != "false" ]; then
export PS4='+${BASH_SOURCE}:${LINENO}:${FUNCNAME[0]}: '
set -x
fi
set -e
env | grep -q "^GEM_MASTER_BRANCH=" || export GEM_MASTER_BRANCH="master"
GEM_GIT_REPO="[email protected]:gem"
GEM_GIT_PACKAGE="oq-engine"
GEM_DEPENDS="oq-python-deb|oq-python3.8|deb oq-libs|python3-oq-libs|deb"
GEM_DEB_PACKAGE="python3-${GEM_GIT_PACKAGE}"
GEM_DEB_SERIE="master"
if [ -z "$GEM_DEB_REPO" ]; then
GEM_DEB_REPO="$HOME/gem_ubuntu_repo"
fi
if [ -z "$GEM_DEB_MONOTONE" ]; then
GEM_DEB_MONOTONE="$HOME/monotone"
fi
GEM_BUILD_ROOT="build-deb"
GEM_BUILD_SRC="${GEM_BUILD_ROOT}/${GEM_DEB_PACKAGE}"
GEM_MAXLOOP=20
GEM_ALWAYS_YES=false
if [ "$GEM_EPHEM_CMD" = "" ]; then
GEM_EPHEM_CMD="lxc-copy"
fi
if [ "$GEM_EPHEM_NAME" = "" ]; then
GEM_EPHEM_NAME="ubuntu16-lxc-eph"
fi
# FIXME this is currently unused, but left as reference
if [ "$GEM_EPHEM_USER" = "" ]; then
GEM_EPHEM_USER="ubuntu"
fi
LXC_VER=$(lxc-ls --version | cut -d '.' -f 1)
if [ "$LXC_VER" -lt 2 ]; then
echo "LXC >= 2.0.0 is required." >&2
exit 1
fi
LXC_TERM="lxc-stop -t 10"
LXC_KILL="lxc-stop -k"
GEM_EPHEM_EXE="${GEM_EPHEM_CMD} -n ${GEM_EPHEM_NAME} -e"
NL="
"
TB=" "
OPT_LIBS_PATH=/opt/openquake/lib/python3/dist-packages:/opt/openquake/lib/python3.8/dist-packages
#
# functions
#
# sig_hand - manages cleanup if the build is aborted
#
sig_hand () {
trap ERR
echo "signal trapped"
if [ "$lxc_name" != "" ]; then
set +e
scp "${lxc_ip}:/tmp/dbserver.log" "out_${BUILD_UBUVER}/"
scp "${lxc_ip}:ssh.log" "out_${BUILD_UBUVER}/ssh.history"
echo "Destroying [$lxc_name] lxc"
sudo $LXC_KILL -n "$lxc_name"
sudo lxc-destroy -n "$lxc_name"
fi
if [ -f /tmp/packager.eph.$$.log ]; then
rm /tmp/packager.eph.$$.log
fi
exit 1
}
#
# dep2var <dep> - converts in a proper way the name of a dependency to a variable name
# <dep> the name of the dependency
#
dep2var () {
echo "$1" | sed 's/[-.]/_/g;s/\(.*\)/\U\1/g'
}
#
# repo_id_get - retry git repo from local git remote command
repo_id_get () {
local repo_name repo_line
if ! repo_name="$(git rev-parse --abbrev-ref --symbolic-full-name "@{u}" 2>/dev/null)"; then
repo_line="$(git remote -vv | grep "^origin[ ${TB}]" | grep '(fetch)$')"
if [ -z "$repo_line" ]; then
echo "no remote repository associated with the current branch, exit 1"
exit 1
fi
else
repo_name="$(echo "$repo_name" | sed 's@/.*@@g')"
repo_line="$(git remote -vv | grep "^${repo_name}[ ${TB}].*(fetch)\$")"
fi
if echo "$repo_line" | grep -q '[0-9a-z_\.-]\+@[a-z0-9_\.-]\+:'; then
repo_id="$(echo "$repo_line" | sed "s/^[^ ${TB}]\+[ ${TB}]\+//g;s/.git[ ${TB}]\+(fetch)$/.git/g;s@/${GEM_GIT_PACKAGE}.git@@g")"
else
repo_id="$(echo "$repo_line" | sed "s/^[^ ${TB}]\+[ ${TB}]\+git:\/\///g;s/.git[ ${TB}]\+(fetch)$/.git/g;s@/${GEM_GIT_PACKAGE}.git@@g")"
fi
echo "$repo_id"
}
#
# mksafedir <dname> - try to create a directory and rise an alert if it already exists
# <dname> name of the directory to create
#
mksafedir () {
local dname
dname="$1"
if [ "$GEM_ALWAYS_YES" != "true" -a -d "$dname" ]; then
echo "$dname already exists"
echo "press Enter to continue or CTRL+C to abort"
read a
fi
rm -rf "$dname"
mkdir -p "$dname"
}
#
# usage <exitcode> - show usage of the script
# <exitcode> value of exitcode
#
usage () {
local ret
ret=$1
echo
echo "USAGE:"
echo " $0 [<-s|--serie> <xenial|bionic|focal>] [-D|--development] [-S--sources_copy] [-B|--binaries] [-U|--unsigned] [-R|--repository] build debian source package."
echo " if -s is present try to produce sources for a specific ubuntu version (xenial, bionic or focal),"
echo " (default xenial)"
echo " if -S is present try to copy sources to <GEM_DEB_MONOTONE>/<BUILD_UBUVER>/source directory"
echo " if -B is present binary package is build too."
echo " if -R is present update the local repository to the new current package"
echo " if -D is present a package with self-computed version is produced."
echo " if -U is present no sign are perfomed using gpg key related to the mantainer."
echo
echo " $0 pkgtest <branch-name>"
echo " install oq-engine package and related dependencies into"
echo " an ubuntu lxc environment and run package tests and demos"
echo " $0 devtest <branch-name>"
echo " put oq-engine and oq-* dependencies sources in a lxc,"
echo " setup environment and run development tests."
echo
exit "$ret"
}
#
# _wait_ssh <lxc_ip> - wait until the new lxc ssh daemon is ready
# <lxc_ip> the IP address of lxc instance
#
_wait_ssh () {
local lxc_ip="$1"
for i in $(seq 1 20); do
if ssh "$lxc_ip" "echo begin"; then
break
fi
sleep 2
done
if [ "$i" -eq 20 ]; then
return 1
fi
}
add_custom_pkg_repo () {
# install package to manage repository properly
ssh "$lxc_ip" "sudo apt-get install -y software-properties-common"
if [ "$REPO_BIN" ]; then
ssh $lxc_ip "sudo apt-add-repository -y \"$REPO_BIN\""
fi
# add custom packages
ssh "$lxc_ip" rm -rf repo/custom_pkgs
if ! ssh "$lxc_ip" ls repo/custom_pkgs >/dev/null ; then
ssh "$lxc_ip" mkdir -p "repo"
scp -r "${GEM_DEB_REPO}/custom_pkgs" "$lxc_ip:repo/custom_pkgs"
fi
ssh "$lxc_ip" "sudo apt-add-repository -y \"deb file:/home/ubuntu/repo/custom_pkgs ${BUILD_UBUVER} main\""
ssh "$lxc_ip" sudo apt-get update
}
add_local_pkg_repo () {
local dep="$1" dep_pkg="$2"
var_pfx="$(dep2var "$dep")"
var_repo="${var_pfx}_REPO"
var_branch="${var_pfx}_BRANCH"
var_commit="${var_pfx}_COMMIT"
if [ "${!var_repo}" != "" ]; then
dep_repo="${!var_repo}"
else
dep_repo="$GEM_GIT_REPO"
fi
if [ "${!var_branch}" != "" ]; then
dep_branch="${!var_branch}"
else
dep_branch="master"
fi
if [ "$dep_repo" = "$GEM_GIT_REPO" -a "$dep_branch" = "${GEM_MASTER_BRANCH}" ]; then
GEM_DEB_SERIE="${GEM_MASTER_BRANCH}"
else
GEM_DEB_SERIE="devel/$(echo "$dep_repo" | sed 's@^.*://@@g;s@/@__@g;s/\./-/g')__${dep_branch}"
fi
from_dir="${GEM_DEB_REPO}/${BUILD_UBUVER}/${GEM_DEB_SERIE}/${dep_pkg}.${!var_commit:0:7}"
time_start="$(date +%s)"
while true; do
ssh "$lxc_ip" mkdir -p "repo"
ssh "$lxc_ip" rm -rf "repo/${dep_pkg}"
if scp -r "$from_dir" "$lxc_ip:repo/${dep_pkg}"; then
break
fi
if [ "$dep_branch" = "$branch" ]; then
# NOTE: currently we retry for 1 hour to get the correct dep version
# if there is concordance between package and dependency branches
time_cur="$(date +%s)"
if [ "$time_cur" -gt $((time_start + 3600)) ]; then
return 1
fi
sleep 10
else
# NOTE: in the other case dep branch is 'master' and package branch isn't
# so we try to get the correct commit package and if it isn't yet built
# it fallback to the latest builded
from_dir="$(ls -drt "${GEM_DEB_REPO}/${BUILD_UBUVER}/${GEM_DEB_SERIE}/${dep_pkg}"* | tail -n 1)"
scp -r "$from_dir" "$lxc_ip:repo/${dep_pkg}"
break
fi
done
ssh "$lxc_ip" sudo apt-add-repository \"deb file:/home/ubuntu/repo/${dep_pkg} ./\"
ssh "$lxc_ip" sudo apt-get update
}
build_dependencies_file () {
local je_deps_base="$1"
local branch_id="$2"
if [ "$REPO_BIN" ]; then
return
fi
pwd
if [ -e ${je_deps_base}_jenkins_deps_info ]; then
return
fi
if [ ! -d ${je_deps_base}_jenkins_deps ]; then
pwd
mkdir ${je_deps_base}_jenkins_deps
fi
#
# dependencies repos
#
# in test sources different repositories and branches can be tested
# consistently: for each openquake dependency it try to use
# the same repository and the same branch OR the gem repository
# and the same branch OR the gem repository and the "master" branch
#
repo_id="$(repo_id_get)"
if [ "$repo_id" != "$GEM_GIT_REPO" ]; then
repos="${repo_id} ${GEM_GIT_REPO}"
else
repos="${GEM_GIT_REPO}"
fi
old_ifs="$IFS"
IFS=" "
for dep_item in $GEM_DEPENDS; do
dep="$(echo "$dep_item" | cut -d '|' -f 1)"
dep_pkg="$(echo "$dep_item" | cut -d '|' -f 2)"
dep_type="$(echo "$dep_item" | cut -d '|' -f 3)"
# if the deb is a subpackage we skip source check
if [ "$dep_type" == "sub" ]; then
continue
fi
found=0
branch_cur="$branch_id"
for repo in $repos; do
# search of same branch in same repo or in GEM_GIT_REPO repo
if git ls-remote --heads "$repo/${dep}.git" | grep -q "refs/heads/$branch_cur" ; then
deps_check_or_clone "$dep" "$repo/${dep}.git" "$branch_cur" "${je_deps_base}"
found=1
break
fi
done
# if not found it fallback in master branch of GEM_GIT_REPO repo
if [ $found -eq 0 ]; then
branch_cur="master"
deps_check_or_clone "$dep" "$repo/${dep}.git" "$branch_cur" "${je_deps_base}"
fi
pushd "${je_deps_base}_jenkins_deps/$dep"
dep_commit="$(git log -1 | grep '^commit' | sed 's/^commit //g')"
popd
echo "dependency: $dep"
echo "repo: $repo"
echo "branch: $branch_cur"
echo "commit: $dep_commit"
echo
var_pfx="$(dep2var "$dep")"
pwd
if [ ! -f ${je_deps_base}_jenkins_deps_info ]; then
touch ${je_deps_base}_jenkins_deps_info
fi
if grep -q "^${var_pfx}_COMMIT=" ${je_deps_base}_jenkins_deps_info; then
if ! grep -q "^${var_pfx}_COMMIT=$dep_commit" ${je_deps_base}_jenkins_deps_info; then
echo "ERROR: $repo -> $branch_cur changed during test:"
echo "before:"
grep "^${var_pfx}_COMMIT=" ${je_deps_base}_jenkins_deps_info
echo "after:"
echo "${var_pfx}_COMMIT=$dep_commit"
exit 1
fi
else
( echo "${var_pfx}_COMMIT=$dep_commit"
echo "${var_pfx}_PKG=$dep_pkg"
echo "${var_pfx}_REPO=$repo"
echo "${var_pfx}_BRANCH=$branch_cur"
echo "${var_pfx}_TYPE=$dep_type" ) >> ${je_deps_base}_jenkins_deps_info
fi
done
IFS="$old_ifs"
}
_depends_resolver () {
local deps_action="$1" je_deps_base="$2"
local old_ifs dep_item dep dep_pkg dep_type
pwd
if [ -f "${je_deps_base}_jenkins_deps_info" ]; then
source "${je_deps_base}_jenkins_deps_info"
fi
old_ifs="$IFS"
IFS=" "
for dep_item in $GEM_DEPENDS; do
dep="$(echo "$dep_item" | cut -d '|' -f 1)"
dep_pkg="$(echo "$dep_item" | cut -d '|' -f 2)"
dep_type="$(echo "$dep_item" | cut -d '|' -f 3)"
if [ "$dep_type" = "src" ]; then
# extract dependencies for source dependencies
pkgs_list="$(deps_list "$deps_action" "${je_deps_base}_jenkins_deps/$dep/debian")"
ssh "$lxc_ip" sudo apt-get install -y ${pkgs_list}
# install source dependencies
pushd "${je_deps_base}_jenkins_deps/$dep"
git archive --prefix "${dep}/" HEAD | ssh "$lxc_ip" "tar xv"
popd
elif [ "$dep_type" = "deb" ]; then
add_local_pkg_repo "$dep" "$dep_pkg"
ssh "$lxc_ip" sudo apt-cache policy "${dep_pkg}"
ssh "$lxc_ip" sudo apt-get install "$APT_FORCE_YES" -y "${dep_pkg}"
elif [ "$dep_type" = "cust" ]; then
add_custom_pkg_repo
ssh "$lxc_ip" sudo apt-get install "$APT_FORCE_YES" -y "${dep_pkg}"
elif [ "$dep_type" = "sub" ]; then
ssh "$lxc_ip" sudo apt-get install "$APT_FORCE_YES" -y "${dep_pkg}"
else
echo "Dep type $dep_type not supported"
exit 1
fi
done
IFS="$old_ifs"
}
_buildfromsrc_innervm_run () {
local lxc_ip="$1"
local branch="$2"
local DPBP_FLAG="$3"
trap 'local LASTERR="$?" ; trap ERR ; (exit $LASTERR) ; return' ERR
ssh "$lxc_ip" "rm -f ssh.log"
ssh "$lxc_ip" "sudo apt-get update"
ssh "$lxc_ip" "sudo apt-get -y upgrade"
gpg -a --export | ssh "$lxc_ip" "sudo apt-key add -"
# add_custom_pkg_repo
ssh "$lxc_ip" "sudo apt-get upgrade -y"
pwd
if [ -f _jenkins_deps_info ]; then
source _jenkins_deps_info
fi
dt="$(cat gem_date_file)"
_depends_resolver build ""
if [ $BUILD_DEVEL -eq 1 ]; then
PKG_COMMIT="$(git rev-parse HEAD | cut -c 1-7)"
pkg_dsc="$(ls ${GEM_DEB_MONOTONE}/${BUILD_UBUVER}/source/${GEM_DEB_PACKAGE}_*~dev${dt}+${PKG_COMMIT}.dsc)"
pkg_base="$(echo "$pkg_dsc" | sed 's/.dsc$//g')"
pkg_changes="${pkg_base}_source.changes"
pkg_debarch="${pkg_base}.tar"
if [ ! -e "$pkg_dsc" -o ! -e "$pkg_changes" -o ! -e "$pkg_debarch".*z ]; then
exit 3
fi
else
echo "FOR PRODUCTION"
fi
scp "$pkg_dsc" "$pkg_changes" "$pkg_debarch".*z "${lxc_ip}:"
# configure the machine to run tests
if [ -z "$GEM_DEVTEST_SKIP_TESTS" ]; then
echo "TODO: tests management"
fi
ssh -t "$lxc_ip" "
set -e
export GEM_GIT_PACKAGE=\"$GEM_GIT_PACKAGE\"
export GEM_DEB_PACKAGE=\"$GEM_DEB_PACKAGE\"
export BUILD_UBUVER=\"$BUILD_UBUVER\"
export dt=\"$dt\"
export DEBEMAIL=\"$DEBEMAIL\"
export DEBFULLNAME=\"$DEBFULLNAME\"
export GEM_SET_DEBUG=\"$GEM_SET_DEBUG\"
export DEB_BUILD_OPTIONS=\"noopt notest nocheck nobench parallel=16\"
export BUILD_SOURCES_COPY=\"$BUILD_SOURCES_COPY\"
export UNSIGN_ARGS=\"$UNSIGN_ARGS\"
export BUILD_DEVEL=\"$BUILD_DEVEL\"
export PKG_DSC=\"$pkg_dsc\"
export PKG_DIR=\"\$(basename \$(echo \"\$PKG_DSC\") | sed 's/\(^[^_]\+\)_\([^-]\+\)-.*/\1-\2/g')\"
sudo apt-get -y --force-yes install git curl build-essential dpatch fakeroot devscripts equivs lintian quilt lsb-release pylint
sudo apt-get "$APT_FORCE_YES" -y install dpkg-dev equivs build-essential pbuilder
mkdir \"\$GEM_GIT_PACKAGE\"
cd \"\$GEM_GIT_PACKAGE\"
dpkg-source -x ../\$(basename \"\$PKG_DSC\")
cd \"\$PKG_DIR\"
mk-build-deps --install --root-cmd sudo --remove --tool \"apt-get -y\" debian/control || true
debuild -i -b
# here the code
exit 0"
# scp "$lxc_ip:${GEM_GIT_PACKAGE}/oq-*.{tar.?z,changes,dsc,buildinfo}" "${GEM_BUILD_ROOT}" || true
scp "$lxc_ip:${GEM_GIT_PACKAGE}/*.deb" "${GEM_BUILD_ROOT}" || true
trap ERR
return
}
#
# buildfromsrc_run <branch> - main function to build on LXC machine
# <branch> name of the tested branch
#
buildfromsrc_run () {
local branch="$1"
# local dep dep_item dep_type old_ifs branch_cur
if [ ! -d "out_${BUILD_UBUVER}" ]; then
mkdir "out_${BUILD_UBUVER}"
fi
if [ ! -d "${GEM_BUILD_ROOT}" ]; then
mkdir "${GEM_BUILD_ROOT}"
fi
if [ ! -d _jenkins_deps ]; then
mkdir _jenkins_deps
fi
#
# dependencies repos
#
# in test sources different repositories and branches can be tested
# consistently: for each openquake dependency it try to use
# the same repository and the same branch OR the gem repository
# and the same branch OR the gem repository and the "master" branch
#
sudo ${GEM_EPHEM_EXE} 2>&1 | tee /tmp/packager.eph.$$.log &
_lxc_name_and_ip_get /tmp/packager.eph.$$.log
_wait_ssh "$lxc_ip"
set +e
_buildfromsrc_innervm_run "$lxc_ip" "$branch"
inner_ret=$?
if [ "$GEM_WAIT_BEFORE_DESTROY" ]; then
sleep 20000 || true
fi
sudo $LXC_TERM -n "$lxc_name"
if [ $inner_ret -ne 0 ]; then
return $inner_ret
fi
set -e
commit="$(git log --pretty='format:%h' -1)"
#
# prepare repo and install $GEM_DEB_PACKAGE package
cd ${GEM_BUILD_ROOT}
dpkg-scanpackages . /dev/null >Packages
cat Packages | gzip -9c > Packages.gz
dpkg-scansources . > Sources
cat Sources | gzip > Sources.gz
cat > Release <<EOF
Origin: openquake-${BUILD_UBUVER}
Label: OpenQuake Local Ubuntu Repository
Codename: $BUILD_UBUVER
Date: $(date -R -u)
Architectures: amd64
Components: main
Description: OpenQuake Local Ubuntu Repository
SHA256:
EOF
( printf ' '"$(sha256sum Packages | cut --delimiter=' ' --fields=1)"' %16d Packages\n' \
"$(wc --bytes Packages | cut --delimiter=' ' --fields=1)"
printf ' '"$(sha256sum Packages.gz | cut --delimiter=' ' --fields=1)"' %16d Packages.gz\n' \
"$(wc --bytes Packages.gz | cut --delimiter=' ' --fields=1)"
printf ' '"$(sha256sum Sources | cut --delimiter=' ' --fields=1)"' %16d Sources\n' \
"$(wc --bytes Sources | cut --delimiter=' ' --fields=1)"
printf ' '"$(sha256sum Sources.gz | cut --delimiter=' ' --fields=1)"' %16d Sources.gz\n' \
"$(wc --bytes Sources.gz | cut --delimiter=' ' --fields=1)" ) >> Release
gpg --armor --detach-sign --output Release.gpg --local-user "$DEBFULLNAME" Release
cd -
#
# in build Ubuntu package each branch package is saved in a separated
# directory with a well known name syntax to be able to use
# correct dependencies during the "test Ubuntu package" procedure
#
if [ "$BUILD_REPOSITORY" -eq 1 -a -d "${GEM_DEB_REPO}" ]; then
if [ "$branch" != "" ]; then
repo_id="$(repo_id_get)"
if [ "$repo_id" != "$GEM_GIT_REPO" -o "$branch" != "$GEM_MASTER_BRANCH" ]; then
CUSTOM_SERIE="devel/$(echo "$repo_id" | sed "s@/@__@g;s/\./-/g")__${branch}"
if [ "$CUSTOM_SERIE" != "" ]; then
GEM_DEB_SERIE="$CUSTOM_SERIE"
fi
fi
fi
mkdir -p "${GEM_DEB_REPO}/${BUILD_UBUVER}/${GEM_DEB_SERIE}"
repo_tmpdir="$(mktemp -d "${GEM_DEB_REPO}/${BUILD_UBUVER}/${GEM_DEB_SERIE}/${GEM_DEB_PACKAGE}.${commit}.XXXXXX")"
# if the monotone directory exists and is the "gem" repo and is the "master" branch then ...
if [ -d "${GEM_DEB_MONOTONE}/${BUILD_UBUVER}/binary" ]; then
if [ "$repo_id" == "$GEM_GIT_REPO" -a "$branch" == "$GEM_MASTER_BRANCH" ]; then
ls ${GEM_BUILD_ROOT}
cp ${GEM_BUILD_ROOT}/${GEM_DEB_PACKAGE}_*.deb \
"${GEM_DEB_MONOTONE}/${BUILD_UBUVER}/binary"
cp ${GEM_BUILD_ROOT}/${GEM_DEB_PACKAGE}_*.buildinfo \
"${GEM_DEB_MONOTONE}/${BUILD_UBUVER}/binary" || true
PKG_COMMIT="$(git rev-parse HEAD | cut -c 1-7)"
cat _jenkins_deps_info
egrep '_COMMIT=|_PKG=' _jenkins_deps_info \
| sed 's/\(^.*_COMMIT=[0-9a-f]\{7\}\).*/\1/g' \
> "${GEM_DEB_MONOTONE}/${BUILD_UBUVER}/${GEM_DEB_PACKAGE}_${PKG_COMMIT}_deps.txt"
fi
fi
cp ${GEM_BUILD_ROOT}/*.deb ${GEM_BUILD_ROOT}/*.changes \
${GEM_BUILD_ROOT}/*.dsc ${GEM_BUILD_ROOT}/*.tar.?z ${GEM_BUILD_ROOT}/*.buildinfo \
${GEM_BUILD_ROOT}/Packages* ${GEM_BUILD_ROOT}/Sources* \
${GEM_BUILD_ROOT}/Release* "${repo_tmpdir}" || true
if [ "${GEM_DEB_REPO}/${BUILD_UBUVER}/${GEM_DEB_SERIE}/${GEM_DEB_PACKAGE}.${commit}" ]; then
rm -rf "${GEM_DEB_REPO}/${BUILD_UBUVER}/${GEM_DEB_SERIE}/${GEM_DEB_PACKAGE}.${commit}"
fi
mv "${repo_tmpdir}" "${GEM_DEB_REPO}/${BUILD_UBUVER}/${GEM_DEB_SERIE}/${GEM_DEB_PACKAGE}.${commit}"
echo "The package is saved here: ${GEM_DEB_REPO}/${BUILD_UBUVER}/${GEM_DEB_SERIE}/${GEM_DEB_PACKAGE}.${commit}"
fi
return $inner_ret
}
_pkgbuild_innervm_run () {
local lxc_ip="$1"
local branch="$2"
local DPBP_FLAG="$3"
trap 'local LASTERR="$?" ; trap ERR ; (exit $LASTERR) ; return' ERR
ssh "$lxc_ip" mkdir build-deb
rsync --exclude "tests/" -a * "$lxc_ip:build-deb"
gpg -a --export | ssh "$lxc_ip" "sudo apt-key add -"
ssh "$lxc_ip" sudo apt-get update
ssh "$lxc_ip" sudo apt-get -y upgrade
build_dependencies_file "../../" "$branch"
add_custom_pkg_repo
ssh "$lxc_ip" "sudo apt-get upgrade -y"
_depends_resolver build "../../"
ssh "$lxc_ip" sudo apt-get -y install build-essential dpatch fakeroot devscripts equivs lintian quilt
ssh "$lxc_ip" "cd build-deb ; ./debian/rules control-file"
ssh "$lxc_ip" "sudo mk-build-deps --install --tool 'apt-get -y' build-deb/debian/control"
ssh -t "$lxc_ip" cd build-deb \&\& dpkg-buildpackage $DPBP_FLAG
scp "$lxc_ip:"*.{tar.?z,changes,dsc} ../
scp "$lxc_ip:"*.buildinfo ../ || true
if echo "$DPBP_FLAG" | grep -q -v -- '-S'; then
scp "$lxc_ip:"*.deb ../
fi
return
}
#
# _devtest_innervm_run <lxc_ip> <branch> - part of source test performed on lxc
# the following activities are performed:
# - extracts dependencies from oq-engine debian/control
# files and install them
# - installs oq-engine sources on lxc
# - set up db
# - runs tests
# - collects all tests output files from lxc
#
# <lxc_ip> the IP address of lxc instance
# <branch> name of the tested branch
#
_devtest_innervm_run () {
local pkgs_list lxc_ip="$1" branch="$2"
trap 'local LASTERR="$?" ; trap ERR ; (exit $LASTERR) ; return' ERR
ssh "$lxc_ip" "rm -f ssh.log"
# disabled buggy sources.list cleanup
# ssh "$lxc_ip" sudo cp /etc/apt/sources.list /etc/apt/sources.list.orig
# ssh "$lxc_ip" sudo grep -v 'file:/home/ubuntu/repo' /etc/apt/sources.list.orig | sudo tee /etc/apt/sources.list
ssh "$lxc_ip" "sudo apt-get update"
ssh "$lxc_ip" "sudo apt-get -y upgrade"
gpg -a --export | ssh "$lxc_ip" "sudo apt-key add -"
add_custom_pkg_repo
ssh "$lxc_ip" "sudo apt-get upgrade -y"
_depends_resolver deprec ""
# extract dependencies for this package
pkgs_list="$(deps_list "all" debian)"
ssh "$lxc_ip" sudo apt-get install -y ${pkgs_list}
# install sources of this package
git archive --prefix ${GEM_GIT_PACKAGE}/ HEAD | ssh "$lxc_ip" "tar xv"
# configure the machine to run tests
if [ -z "$GEM_DEVTEST_SKIP_TESTS" ]; then
ssh "$lxc_ip" "set -e
export PYTHONPATH=\"\$PWD/oq-engine\"
echo 'Starting DbServer. Log is saved to /tmp/dbserver.log'
cd oq-engine; nohup /opt/openquake/bin/python3 bin/oq dbserver start &>/tmp/dbserver.log </dev/null"
ssh "$lxc_ip" "export GEM_SET_DEBUG=$GEM_SET_DEBUG
set -e
if [ -n \"\$GEM_SET_DEBUG\" -a \"\$GEM_SET_DEBUG\" != \"false\" ]; then
export PS4='+\${BASH_SOURCE}:\${LINENO}:\${FUNCNAME[0]}: '
set -x
fi
sudo /opt/openquake/bin/pip install pytest pytest-xdist
export PYTHONPATH=\"\$PWD/oq-engine:$OPT_LIBS_PATH\"
cd oq-engine
export MPLBACKEND=Agg; /opt/openquake/bin/pytest --doctest-modules --junitxml=xunit-hmtk.xml -v openquake/hmtk
/opt/openquake/bin/pytest --doctest-modules --junitxml=xunit-engine.xml -v openquake/engine
/opt/openquake/bin/pytest --doctest-modules --junitxml=xunit-server.xml -v openquake/server
/opt/openquake/bin/pytest --doctest-modules --junitxml=xunit-calculators.xml -v openquake/calculators
/opt/openquake/bin/pytest --doctest-modules --junitxml=xunit-risklib.xml -v openquake/risklib
/opt/openquake/bin/pytest --doctest-modules --junitxml=xunit-commonlib.xml -v openquake/commonlib
/opt/openquake/bin/pytest --doctest-modules --junitxml=xunit-commands.xml -v openquake/commands
export MPLBACKEND=Agg; /opt/openquake/bin/pytest -n 4 --doctest-modules -v openquake/hazardlib
/opt/openquake/bin/python3 bin/oq dbserver stop"
scp "${lxc_ip}:oq-engine/xunit-*.xml" "out_${BUILD_UBUVER}/" || true
scp "${lxc_ip}:/tmp/dbserver.log" "out_${BUILD_UBUVER}/" || true
# else
# -- moved up --
# if [ -d "$HOME/fake-data/$GEM_GIT_PACKAGE" ]; then
# cp "$HOME/fake-data/$GEM_GIT_PACKAGE/"* "out_${BUILD_UBUVER}/"
# fi
fi
# TODO: version check
# echo "NOW PRESS ENTER TO CONTINUE"
# read aaa
trap ERR
return
}
_builddoc_innervm_run () {
local pkgs_list lxc_ip="$1" branch="$2"
trap 'local LASTERR="$?" ; trap ERR ; (exit $LASTERR) ; return' ERR
ssh "$lxc_ip" "rm -f ssh.log"
add_custom_pkg_repo
ssh "$lxc_ip" "sudo apt-get -y upgrade"
gpg -a --export | ssh "$lxc_ip" "sudo apt-key add -"
ssh "$lxc_ip" mkdir -p "repo"
_depends_resolver build ""
# extract dependencies for this package
pkgs_list="$(deps_list "build" debian)"
ssh "$lxc_ip" sudo apt-get install -y ${pkgs_list}
# install sources of this package
git archive --prefix ${GEM_GIT_PACKAGE}/ HEAD | ssh "$lxc_ip" "tar xv"
# TODO: version check
trap ERR
return
}
#
# _pkgtest_innervm_run <lxc_ip> <branch> - part of package test performed on lxc
# the following activities are performed:
# - adds local gpg key to apt keystore
# - copies 'oq-*' package repositories on lxc
# - adds repositories to apt sources on lxc
# - performs package tests (install, remove, reinstall ..)
# - set up db
# - executes demos
#
# <lxc_ip> the IP address of lxc instance
# <branch> name of the tested branch
#
_pkgtest_innervm_run () {
local lxc_ip="$1" branch="$2" old_ifs from_dir
trap 'local LASTERR="$?" ; trap ERR ; (exit $LASTERR) ; return' ERR
ssh "$lxc_ip" "rm -f ssh.log"
ssh "$lxc_ip" "sudo apt-get update"
ssh "$lxc_ip" "sudo apt-get -y upgrade"
gpg -a --export | ssh "$lxc_ip" "sudo apt-key add -"
# install package to manage repository properly
ssh "$lxc_ip" "sudo apt-get install -y software-properties-common"
# create a remote "local repo" where place $GEM_DEB_PACKAGE package
ssh "$lxc_ip" mkdir -p "repo/${GEM_DEB_PACKAGE}"
scp "${GEM_BUILD_ROOT}/${GEM_DEB_PACKAGE}_"*.deb \
"${GEM_BUILD_ROOT}/Packages"* "${GEM_BUILD_ROOT}/Sources"* "${GEM_BUILD_ROOT}/Release"* "$lxc_ip:repo/${GEM_DEB_PACKAGE}"
scp "${GEM_BUILD_ROOT}/${GEM_DEB_PACKAGE}_"*.buildinfo "$lxc_ip:repo/${GEM_DEB_PACKAGE}" || true
ssh "$lxc_ip" sudo apt-add-repository \"deb file:/home/ubuntu/repo/${GEM_DEB_PACKAGE} ./\"
pwd
if [ -f _jenkins_deps_info ]; then
source _jenkins_deps_info
fi
ssh "$lxc_ip" mkdir -p "repo"
old_ifs="$IFS"
IFS=" $NL"
for dep_item in $GEM_DEPENDS; do
dep="$(echo "$dep_item" | cut -d '|' -f 1)"
dep_pkg="$(echo "$dep_item" | cut -d '|' -f 2)"
dep_type="$(echo "$dep_item" | cut -d '|' -f 3)"
# if the deb is a subpackage we skip source check
if [ "$dep_type" == "cust" -o "$dep_type" == "sub" ]; then
continue
else
add_local_pkg_repo "$dep" "$dep_pkg"
fi
done
IFS="$old_ifs"
# add custom packages
add_custom_pkg_repo
ssh "$lxc_ip" "sudo apt-get update"
ssh "$lxc_ip" "sudo apt-get upgrade -y"
# packaging related tests (install, remove, purge, install, reinstall)
ssh "$lxc_ip" sudo apt-get install -y ${GEM_DEB_PACKAGE}
ssh "$lxc_ip" sudo apt-get remove -y ${GEM_DEB_PACKAGE}
ssh "$lxc_ip" sudo apt-get install -y ${GEM_DEB_PACKAGE}
ssh "$lxc_ip" sudo apt-get install --reinstall -y ${GEM_DEB_PACKAGE}
# configure the machine to run tests
if [ -z "$GEM_PKGTEST_SKIP_DEMOS" ]; then
# run one risk demo (event based risk)
ssh "$lxc_ip" "export GEM_SET_DEBUG=$GEM_SET_DEBUG
set -e
if [ \$(cat /etc/passwd | grep ^openquake: | wc -l) -eq 0 ]; then
echo \"There's no 'openquake' user on this system. Installation may have failed.\"
exit 1
fi
sudo systemctl start openquake-dbserver
# dbserver should be already started by systemd. Let's have a check
# FIXME instead of using a 'sleep' we should use a better way to check that
# the dbserver is alive
sleep 10
systemctl status openquake-dbserver
if [ -n \"\$GEM_SET_DEBUG\" -a \"\$GEM_SET_DEBUG\" != \"false\" ]; then
export PS4='+\${BASH_SOURCE}:\${LINENO}:\${FUNCNAME[0]}: '
set -x
fi
cd /usr/share/openquake/engine/demos
oq engine --run risk/EventBasedRisk/job.ini
# Start the DbServer
# openquake-webui and openquake-dbserver have been stopped by python3-oq-engine-worker
sudo systemctl start openquake-dbserver
sleep 10
sudo systemctl status openquake-dbserver
oq engine --run risk/EventBasedRisk/job.ini
# Try to export a set of results AFTER the calculation
# automatically creates a directory called out
echo \"Exporting output #1\"
oq engine --eo 1 /tmp/output
echo \"Exporting calculation #2\"
oq engine --eos 2 /tmp/out/eos_2
# oq info --report risk
echo 'Listing hazard calculations'
oq engine --lhc
echo 'Listing risk calculations'
oq engine --lrc"
ssh "$lxc_ip" "oq engine --make-html-report today
oq engine --show-log -1
oq reset --yes"
# WebUI command check
ssh "$lxc_ip" "webui_fail_msg=\"This command must be run by the proper user: see the documentation for details\"
set -x
webui_fail=\$(oq webui migrate 2>&1 || true)
if [ \"\$webui_fail\" != \"\$webui_fail_msg\" ]; then
echo \"The 'oq webui' command is broken: it reports\n\t\$webui_fail\ninstead of\n\t\$webui_fail_msg\"
exit 1
fi
# FIXME: this directory must be discussed
sudo NUMBA_CACHE_DIR=/tmp -u openquake oq webui migrate"
fi
scp -r "${lxc_ip}:/usr/share/doc/${GEM_DEB_PACKAGE}/changelog*" "out_${BUILD_UBUVER}/"
trap ERR
return
}
#
# deps_list <listtype> <filename> - retrieve dependencies list from debian/control
# to be able to install them without the package
# listtype inform deps_list which control lines use to get dependencies
# dir the folder containing control and rules files
#
deps_list() {
local old_ifs out_list skip i d listtype="$1" control_file="$2"/control rules_file="$2"/rules
if grep -q "^${BUILD_UBUVER^^}_DEP" "$rules_file"; then
# Use custom dependencies in debian/rules
rules_dep=$(grep "^${BUILD_UBUVER^^}_DEP *= *" "$rules_file" | sed 's/([^)]*)//g' | sed 's/^.*= *//g')
rules_rec=$(grep "^${BUILD_UBUVER^^}_REC *= *" "$rules_file" | sed 's/([^)]*)//g' | sed 's/^.*= *//g')
fi
out_list=""
if [ "$listtype" = "all" ]; then
in_list="$((cat "$control_file" | egrep '^Depends:|^Recommends:|Build-Depends:' | sed 's/^\(Build-\)\?Depends://g;s/^Recommends://g' ; echo ", $rules_dep, $rules_rec") | tr '\n' ',' | sed 's/,\+/,/g')"
elif [ "$listtype" = "deprec" ]; then
in_list="$((cat "$control_file" | egrep '^Depends:|^Recommends:' | sed 's/^Depends://g;s/^Recommends://g' ; echo ", $rules_dep, $rules_rec") | tr '\n' ',' | sed 's/,\+/,/g')"
elif [ "$listtype" = "build" ]; then
in_list="$((cat "$control_file" | egrep '^Depends:|^Build-Depends:' | sed 's/^\(Build-\)\?Depends://g' ; echo ", $rules_dep") | tr '\n' ',' | sed 's/,\+/,/g')"
else
in_list="$((cat "$control_file" | egrep "^Depends:" | sed 's/^Depends: //g'; echo ", $rules_dep") | tr '\n' ',' | sed 's/,\+/,/g')"
fi
old_ifs="$IFS"
IFS=','
for i in $in_list ; do
item="$(echo "$i" | sed 's/^ \+//g;s/ \+$//g')"
pkg_name="$(echo "${item} " | cut -d ' ' -f 1)"
pkg_vers="$(echo "${item} " | cut -d ' ' -f 2)"
echo "[$pkg_name][$pkg_vers]" >&2
if echo "$pkg_name" | grep -q "^\${" ; then
continue
fi
skip=0
for d_item in $(echo "$GEM_DEPENDS" | sed 's/ /,/g'); do
d="$(echo "$d_item" | cut -d '|' -f 1)"
d_pkg="$(echo "$d_item" | cut -d '|' -f 2)"
d_type="$(echo "$d_item" | cut -d '|' -f 3)"
if [ "$d_type" != "src" ]; then
continue
fi
if [ "$pkg_name" = "${d_pkg}" ]; then
skip=1
break
fi
done
if [ $skip -eq 1 ]; then
continue
fi
if [ "$out_list" = "" ]; then
out_list="$pkg_name"
else
out_list="$out_list $pkg_name"
fi
done
IFS="$old_ifs"
echo "$out_list" | \
sed "s/\b${GEM_DEB_PACKAGE}\b/ /g;s/ \+/ /g;s/^ \+//g;s/ \+\$//g"
return 0
}
#
# _lxc_name_and_ip_get <filename> - retrieve name and ip of the runned ephemeral lxc and
# put them into global vars "lxc_name" and "lxc_ip"
# <filename> file where lxc-start-ephemeral output is saved
#
_lxc_name_and_ip_get()
{
local filename="$1" i e
e=-1
if [ "$GEM_NO_EPHEM" ]; then
lxc_name="$GEM_EPHEM_NAME"
else
i=-1
for i in $(seq 1 40); do
if grep -q " as clone of $GEM_EPHEM_NAME" "$filename" 2>&1 ; then
lxc_name="$(grep " as clone of $GEM_EPHEM_NAME" "$filename" | tail -n 1 | sed "s/Created \(.*\) as clone of ${GEM_EPHEM_NAME}/\1/g")"
break
else
sleep 2
fi
done
if [ "$i" -eq 40 ]; then
return 1