Include nanoseconds in timestamps
[dbsrgits/DBIx-Class-Schema-Loader.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.%N')]" ; }
16
17 ci_vm_state_text() {
18   echo "
19 ========================== CI System information ============================
20
21 = CPUinfo
22 $(perl -0777 -p -e 's/.+\n\n(?!\z)//s' < /proc/cpuinfo)
23
24 = Meminfo
25 $(free -m -t)
26
27 = Diskinfo
28 $(sudo df -h)
29
30 $(mount | grep '^/')
31
32 = Kernel info
33 $(uname -a)
34
35 = Network Configuration
36 $(ip addr)
37
38 = Network Sockets Status
39 $(sudo netstat -an46p | grep -Pv '\s(CLOSING|(FIN|TIME|CLOSE)_WAIT.?|LAST_ACK)\s')
40
41 = Processlist
42 $(sudo ps fuxa)
43
44 = Environment
45 $(env | grep -P 'TEST|HARNESS|MAKE|TRAVIS|PERL|DBIC' | LC_ALL=C sort | cat -v)
46
47 = Perl in use
48 $(perl -V)
49 ============================================================================="
50 }
51
52 run_or_err() {
53   echo_err -n "$(tstamp) $1 ... "
54
55   LASTCMD="$2"
56   LASTEXIT=0
57   START_TIME=$SECONDS
58
59   PRMETER_PIDFILE="$(tempfile)_$SECONDS"
60   # the double bash is to hide the job control messages
61   bash -c "bash -c 'echo \$\$ >> $PRMETER_PIDFILE; while true; do sleep 10; echo -n \"\${SECONDS}s ... \"; done' &"
62
63   LASTOUT=$( eval "$2" 2>&1 ) || LASTEXIT=$?
64
65   # stop progress meter
66   for p in $(cat "$PRMETER_PIDFILE"); do kill $p ; done
67
68   DELTA_TIME=$(( $SECONDS - $START_TIME ))
69
70   if [[ "$LASTEXIT" != "0" ]] ; then
71     if [[ -z "$3" ]] ; then
72       echo_err "FAILED !!! (after ${DELTA_TIME}s)"
73       echo_err "Command executed:"
74       echo_err "$LASTCMD"
75       echo_err "STDOUT+STDERR:"
76       echo_err "$LASTOUT"
77     fi
78
79     return $LASTEXIT
80   else
81     echo_err "done (took ${DELTA_TIME}s)"
82   fi
83 }
84
85 apt_install() {
86   # flatten
87   pkgs="$@"
88
89   run_or_err "Installing Debian APT packages: $pkgs" "sudo apt-get install --allow-unauthenticated  --no-install-recommends -y $pkgs"
90 }
91
92 extract_prereqs() {
93   # once --verbose is set, --no-verbose can't disable it
94   # do this by hand
95   local PERL_CPANM_OPT="$( echo $PERL_CPANM_OPT | sed 's/--verbose\s*//' )"
96
97   # hack-hack-hack
98   LASTEXIT=0
99   COMBINED_OUT="$( { stdout="$(cpanm --quiet --scandeps --format tree "$@")" ; } 2>&1; echo "!!!STDERRSTDOUTSEPARATOR!!!$stdout")" \
100     || LASTEXIT=$?
101
102   OUT=${COMBINED_OUT#*!!!STDERRSTDOUTSEPARATOR!!!}
103   ERR=${COMBINED_OUT%!!!STDERRSTDOUTSEPARATOR!!!*}
104
105   if [[ "$LASTEXIT" != "0" ]] ; then
106     echo_err "Error occured (exit code $LASTEXIT) retrieving dependencies of $@:"
107     echo_err "$ERR"
108     echo_err "$OUT"
109     exit 1
110   fi
111
112   # throw away warnings, up-to-date diag, ascii art, convert to modnames
113   PQ=$(perl -p -e '
114     s/^.*?is up to date.*$//;
115     s/^\!.*//;
116     s/^[^a-z]+//i;
117     s/\-[^\-]+$/ /; # strip version part
118     s/\-/::/g
119   ' <<< "$OUT")
120
121   # throw away what was in $@
122   for m in "$@" ; do
123     PQ=$( perl -p -e 's/(?:\s|^)\Q'"$m"'\E(?:\s|$)/ /mg' <<< "$PQ")
124   done
125
126   # RV
127   echo "$PQ"
128 }
129
130 parallel_installdeps_notest() {
131   if [[ -z "$@" ]] ; then return; fi
132
133   # one module spec per line
134   MODLIST="$(printf '%s\n' "$@")"
135
136   # We want to trap the output of each process and serially append them to
137   # each other as opposed to just dumping a jumbled up mass-log that would
138   # need careful unpicking by a human
139   #
140   # While cpanm does maintain individual buildlogs in more recent versions,
141   # we are not terribly interested in trying to figure out which log is which
142   # dist. The verbose-output + trap STDIO technique is vastly superior in this
143   # particular case
144   #
145   # Explanation of inline args:
146   #
147   # [09:38] <T> you need a $0
148   # [09:38] <G> hence the _
149   # [09:38] <G> bash -c '...' _
150   # [09:39] <T> I like -- because it's the magic that gnu getopts uses for somethign else
151   # [09:39] <G> or --, yes
152   # [09:39] <T> ribasushi: you could put "giant space monkey penises" instead of "--" and it would work just as well
153   #
154   run_or_err "Installing (without testing) $(echo $MODLIST)" \
155     "echo \\
156 \"$MODLIST\" \\
157       | xargs -d '\\n' -n 1 -P $NUMTHREADS bash -c \\
158         'OUT=\$($TIMEOUT_CMD cpanm --notest \"\$@\" 2>&1 ) || (LASTEXIT=\$?; echo \"\$OUT\"; exit \$LASTEXIT)' \\
159         'giant space monkey penises'
160     "
161 }
162
163 installdeps() {
164   if [[ -z "$@" ]] ; then return; fi
165
166   MODLIST=$(printf "%q " "$@" | perl -pe 's/^\s+|\s+$//g')
167
168   local -x HARNESS_OPTIONS
169
170   HARNESS_OPTIONS="j$NUMTHREADS"
171
172   if ! run_or_err "Attempting install of $# modules under parallel ($HARNESS_OPTIONS) testing ($MODLIST)" "_dep_inst_with_test $MODLIST" quiet_fail ; then
173     local errlog="failed after ${DELTA_TIME}s Exit:$LASTEXIT Log:$(/usr/bin/nopaste -q -s Shadowcat -d "Parallel testfail" <<< "$LASTOUT")"
174     echo "$errlog"
175
176     POSTMORTEM="$POSTMORTEM$(
177       echo
178       echo "Depinstall of $MODLIST under $HARNESS_OPTIONS parallel testing $errlog"
179     )"
180
181     HARNESS_OPTIONS=""
182     run_or_err "Retrying same $# modules without parallel testing" "_dep_inst_with_test $MODLIST"
183   fi
184
185   INSTALLDEPS_OUT="${INSTALLDEPS_OUT}${LASTOUT}"
186 }
187
188 _dep_inst_with_test() {
189   if [[ "$DEVREL_DEPS" == "true" ]] ; then
190     # --dev is already part of CPANM_OPT
191     LASTCMD="$TIMEOUT_CMD cpanm $@"
192     $LASTCMD 2>&1
193   else
194     LASTCMD="$TIMEOUT_CMD cpan $@"
195     $LASTCMD 2>&1
196
197     # older perls do not have a CPAN which can exit with error on failed install
198     for m in "$@"; do
199       if ! perl -e '
200
201 my $mod = (
202   $ARGV[0] =~ m{ \/ .*? ([^\/]+) $ }x
203     ? do { my @p = split (/\-/, $1); pop @p; join "::", @p }
204     : $ARGV[0]
205 );
206
207 $mod = q{List::Util} if $mod eq q{Scalar::List::Utils};
208
209 eval qq{require($mod)} or ( print $@ and exit 1)
210
211       ' "$m" 2> /dev/null ; then
212         echo -e "$m installation seems to have failed"
213         return 1
214       fi
215     done
216   fi
217 }
218
219 CPAN_is_sane() { perl -MCPAN\ 1.94_56 -e 1 &>/dev/null ; }
220
221 CPAN_supports_BUILDPL() { perl -MCPAN\ 1.9205 -e1 &>/dev/null; }