896a44c82ca7f518ac14658d9c8282b40f460dce
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / common.bash
1 #!/bin/bash
2
3 set -e
4
5 TEST_STDERR_LOG=/tmp/dbictest.stderr
6 TIMEOUT_CMD="/usr/bin/timeout --kill-after=9.5m --signal=TERM 9m"
7
8 echo_err() { echo "$@" 1>&2 ; }
9
10 if [[ "$TRAVIS" != "true" ]] ; then
11   echo_err "Running this script makes no sense outside of travis-ci"
12   exit 1
13 fi
14
15 tstamp() { echo -n "[$(date '+%H:%M:%S')]" ; }
16
17 run_or_err() {
18   echo_err -n "$(tstamp) $1 ... "
19
20   LASTCMD="$2"
21   LASTEXIT=0
22   START_TIME=$SECONDS
23   LASTOUT=$( eval "$2" 2>&1 ) || LASTEXIT=$?
24   DELTA_TIME=$(( $SECONDS - $START_TIME ))
25
26   if [[ "$LASTEXIT" != "0" ]] ; then
27     if [[ -z "$3" ]] ; then
28       echo_err "FAILED !!! (after ${DELTA_TIME}s)"
29       echo_err "Command executed:"
30       echo_err "$LASTCMD"
31       echo_err "STDOUT+STDERR:"
32       echo_err "$LASTOUT"
33     fi
34
35     return $LASTEXIT
36   else
37     echo_err "done (took ${DELTA_TIME}s)"
38   fi
39 }
40
41 apt_install() {
42   # flatten
43   pkgs="$@"
44
45   # Need to do this at every step, the sources list may very well have changed
46   run_or_err "Updating APT available package list" "sudo apt-get update"
47
48   run_or_err "Installing Debian APT packages: $pkgs" "sudo apt-get install --allow-unauthenticated  --no-install-recommends -y $pkgs"
49 }
50
51 extract_prereqs() {
52   # once --verbose is set, --no-verbose can't disable it
53   # do this by hand
54   local PERL_CPANM_OPT="$( echo $PERL_CPANM_OPT | sed 's/--verbose\s*//' )"
55
56   # hack-hack-hack
57   LASTEXIT=0
58   COMBINED_OUT="$( { stdout="$(cpanm --quiet --scandeps --format tree "$@")" ; } 2>&1; echo "!!!STDERRSTDOUTSEPARATOR!!!$stdout")" \
59     || LASTEXIT=$?
60
61   OUT=${COMBINED_OUT#*!!!STDERRSTDOUTSEPARATOR!!!}
62   ERR=${COMBINED_OUT%!!!STDERRSTDOUTSEPARATOR!!!*}
63
64   if [[ "$LASTEXIT" != "0" ]] ; then
65     echo_err "Error occured (exit code $LASTEXIT) retrieving dependencies of $@:"
66     echo_err "$ERR"
67     echo_err "$OUT"
68     exit 1
69   fi
70
71   # throw away warnings, up-to-date diag, ascii art, convert to modnames
72   PQ=$(perl -p -e '
73     s/^.*?is up to date.*$//;
74     s/^\!.*//;
75     s/^[^a-z]+//i;
76     s/\-[^\-]+$/ /; # strip version part
77     s/\-/::/g
78   ' <<< "$OUT")
79
80   # throw away what was in $@
81   for m in "$@" ; do
82     PQ=$( perl -p -e 's/(?:\s|^)\Q'"$m"'\E(?:\s|$)/ /mg' <<< "$PQ")
83   done
84
85   # RV
86   echo "$PQ"
87 }
88
89 parallel_installdeps_notest() {
90   if [[ -z "$@" ]] ; then return; fi
91
92   # one module spec per line
93   MODLIST="$(printf '%s\n' "$@")"
94
95   # We want to trap the output of each process and serially append them to
96   # each other as opposed to just dumping a jumbled up mass-log that would
97   # need careful unpicking by a human
98   #
99   # While cpanm does maintain individual buildlogs in more recent versions,
100   # we are not terribly interested in trying to figure out which log is which
101   # dist. The verbose-output + trap STDIO technique is vastly superior in this
102   # particular case
103   #
104   # Explanation of inline args:
105   #
106   # [09:38] <T> you need a $0
107   # [09:38] <G> hence the _
108   # [09:38] <G> bash -c '...' _
109   # [09:39] <T> I like -- because it's the magic that gnu getopts uses for somethign else
110   # [09:39] <G> or --, yes
111   # [09:39] <T> ribasushi: you could put "giant space monkey penises" instead of "--" and it would work just as well
112   #
113   run_or_err "Installing (without testing) $(echo $MODLIST)" \
114     "echo \\
115 \"$MODLIST\" \\
116       | xargs -d '\\n' -n 1 -P $NUMTHREADS bash -c \\
117         'OUT=\$($TIMEOUT_CMD cpanm --notest \"\$@\" 2>&1 ) || (LASTEXIT=\$?; echo \"\$OUT\"; exit \$LASTEXIT)' \\
118         'giant space monkey penises'
119     "
120 }
121
122 installdeps() {
123   if [[ -z "$@" ]] ; then return; fi
124
125   MODLIST=$(printf "%q " "$@" | perl -pe 's/^\s+|\s+$//g')
126
127   local -x HARNESS_OPTIONS
128
129   HARNESS_OPTIONS="j$NUMTHREADS"
130
131   if ! run_or_err "Attempting install of $# modules under parallel ($HARNESS_OPTIONS) testing ($MODLIST)" "_dep_inst_with_test $MODLIST" quiet_fail ; then
132     local errlog="failed after ${DELTA_TIME}s Exit:$LASTEXIT Log:$(/usr/bin/nopaste -q -s Shadowcat -d "Parallel testfail" <<< "$LASTOUT")"
133     echo "$errlog"
134
135     POSTMORTEM="$POSTMORTEM$(
136       echo
137       echo "Depinstall of $MODLIST under $HARNESS_OPTIONS parallel testing $errlog"
138     )"
139
140     HARNESS_OPTIONS=""
141     run_or_err "Retrying same $# modules without parallel testing" "_dep_inst_with_test $MODLIST"
142   fi
143
144   INSTALLDEPS_OUT="${INSTALLDEPS_OUT}${LASTOUT}"
145 }
146
147 _dep_inst_with_test() {
148   if [[ "$DEVREL_DEPS" == "true" ]] ; then
149     # --dev is already part of CPANM_OPT
150     LASTCMD="$TIMEOUT_CMD cpanm $@"
151     $LASTCMD 2>&1
152   else
153     LASTCMD="$TIMEOUT_CMD cpan $@"
154     $LASTCMD 2>&1
155
156     # older perls do not have a CPAN which can exit with error on failed install
157     for m in "$@"; do
158       if ! perl -e '
159
160 my $mod = (
161   $ARGV[0] =~ m{ \/ .*? ([^\/]+) $ }x
162     ? do { my @p = split (/\-/, $1); pop @p; join "::", @p }
163     : $ARGV[0]
164 );
165
166 $mod = q{List::Util} if $mod eq q{Scalar::List::Utils};
167
168 eval qq{require($mod)} or ( print $@ and exit 1)
169
170       ' "$m" 2> /dev/null ; then
171         echo -e "$m installation seems to have failed"
172         return 1
173       fi
174     done
175   fi
176 }
177
178 CPAN_is_sane() { perl -MCPAN\ 1.94_56 -e 1 &>/dev/null ; }
179
180 CPAN_supports_BUILDPL() { perl -MCPAN\ 1.9205 -e1 &>/dev/null; }