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