(travis) Attempt to grab more info on parallel_installdeps_notest failures
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 30_before_script.bash
CommitLineData
b58ecb01 1#!/bin/bash
2
3source maint/travis-ci_scripts/common.bash
4if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
6d74b82c 6# poison the environment
eed5492f 7if [[ "$POISON_ENV" = "true" ]] ; then
6d74b82c 8
7a1bbec9 9 # in addition to making sure tests do not rely on implicid order of
10 # returned results, look through lib, find all mentioned ENVvars and
11 # set them to true and see if anything explodes
12 for var in \
13 DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER \
14 $(grep -P '\$ENV\{' -r lib/ --exclude-dir Optional | grep -oP '\bDBIC\w+' | sort -u | grep -v DBIC_TRACE)
15 do
7c1a09fc 16 if [[ -z "${!var}" ]] ; then
17 export $var=1
7a1bbec9 18 echo "POISON_ENV: setting $var to 1"
7c1a09fc 19 fi
eed5492f 20 done
fb88ca2c 21
6d74b82c 22 # bogus nonexisting DBI_*
444f799b 23 export DBI_DSN="dbi:ODBC:server=NonexistentServerAddress"
24 export DBI_DRIVER="ADO"
25
cbd7f87a 26 # some people do in fact set this - boggle!!!
27 export PERL_STRICTURES_EXTRA=1
6d74b82c 28
29 # emulate a local::lib-like env
30 # trick cpanm into executing true as shell - we just need the find+unpack
31 run_or_err "Downloading latest stable DBIC from CPAN" \
32 "SHELL=/bin/true cpanm --look DBIx::Class"
33
34 export PERL5LIB="$( ls -d ~/.cpanm/latest-build/DBIx-Class-*/lib | tail -n1 ):$PERL5LIB"
35
36 # perldoc -l <mod> searches $(pwd)/lib in addition to PERL5LIB etc, hence the cd /
37 echo_err "Latest stable DBIC (without deps) locatable via \$PERL5LIB at $(cd / && perldoc -l DBIx::Class)"
4f6eb3d8 38
39 # FIXME - this is a kludge in place of proper MDV testing. For the time
40 # being simply use the minimum versions of our DBI/DBDstack, to avoid
41 # fuckups like 0.08260 (went unnoticed for 5 months)
42 #
43 # use url-spec for DBI due to https://github.com/miyagawa/cpanminus/issues/328
44 if perl -M5.013003 -e1 &>/dev/null ; then
45 # earlier DBI will not compile without PERL_POLLUTE which was gone in 5.14
46 parallel_installdeps_notest T/TI/TIMB/DBI-1.614.tar.gz
47 else
48 parallel_installdeps_notest T/TI/TIMB/DBI-1.57.tar.gz
49 fi
50
51 # Test both minimum DBD::SQLite and minimum BigInt SQLite
52 if [[ "$CLEANTEST" = "true" ]]; then
53 parallel_installdeps_notest DBD::SQLite@1.37
54 else
55 parallel_installdeps_notest DBD::SQLite@1.29
56 fi
57
992a24f6 58fi
59
b58ecb01 60if [[ "$CLEANTEST" = "true" ]]; then
61 # get the last inc/ off cpan - we will get rid of MI
62 # soon enough, but till then this will do
63 # the point is to have a *really* clean perl (the ones
64 # we build are guaranteed to be clean, without side
65 # effects from travis preinstalls)
66
67 # trick cpanm into executing true as shell - we just need the find+unpack
6d74b82c 68 [[ -d ~/.cpanm/latest-build/DBIx-Class-*/inc ]] || run_or_err "Downloading latest stable DBIC inc/ from CPAN" \
b58ecb01 69 "SHELL=/bin/true cpanm --look DBIx::Class"
70
71 mv ~/.cpanm/latest-build/DBIx-Class-*/inc .
72
b58ecb01 73 # The first CPAN which is somewhat sane is around 1.94_56 (perl 5.12)
74 # The problem is that the first sane version also brings a *lot* of
75 # deps with it, notably things like YAML and HTTP::Tiny
76 # The goal of CLEANTEST is to have as little extra stuff installed as
77 # possible, mainly to catch "but X is perl core" mistakes
78 # So instead we still use our stock (possibly old) CPAN, and add some
79 # handholding
b58ecb01 80
e6b373aa 81 if [[ "$DEVREL_DEPS" == "true" ]] ; then
082f208f 82 # We are not "quite ready" for SQLA 1.99, do not consider it
647da28e 83 #
082f208f 84 installdeps 'SQL::Abstract~<1.99'
dd5de10a 85
86 elif ! CPAN_is_sane ; then
87 # no configure_requires - we will need the usual suspects anyway
6d74b82c 88 # without pre-installing these in one pass things like extract_prereqs won't work
cf836d21 89 installdeps ExtUtils::MakeMaker ExtUtils::CBuilder Module::Build
dd5de10a 90
e6b373aa 91 fi
92
b58ecb01 93else
94 # we will be running all dbic tests - preinstall lots of stuff, run basic tests
95 # using SQLT and set up whatever databases necessary
96 export DBICTEST_SQLT_DEPLOY=1
97
98 # do the preinstall in several passes to minimize amount of cross-deps installing
99 # multiple times, and to avoid module re-architecture breaking another install
91d48c58 100 # (e.g. once Carp is upgraded there's no more Carp::Heavy,
101 # while a File::Path upgrade may cause a parallel EUMM run to fail)
b58ecb01 102 #
2b885e5f 103 parallel_installdeps_notest ExtUtils::MakeMaker
91d48c58 104 parallel_installdeps_notest File::Path
b58ecb01 105 parallel_installdeps_notest Carp
e58d384f 106 parallel_installdeps_notest Module::Build
cf836d21 107 parallel_installdeps_notest File::Spec Data::Dumper Module::Runtime
3fdb3624 108 parallel_installdeps_notest Test::Exception Encode::Locale Test::Fatal
e1ab2f7a 109 parallel_installdeps_notest Test::Warn B::Hooks::EndOfScope Test::Differences HTTP::Status
f5616614 110 parallel_installdeps_notest Test::Pod::Coverage Test::EOL Devel::GlobalDestruction Sub::Name MRO::Compat Class::XSAccessor URI::Escape HTML::Entities
4f6eb3d8 111 parallel_installdeps_notest YAML LWP Class::Trigger JSON::XS DateTime::Format::Builder Class::Accessor::Grouped Package::Variant
07292953 112 parallel_installdeps_notest SQL::Abstract Moose Module::Install JSON SQL::Translator File::Which
b58ecb01 113
2b580420 114 if [[ -n "$DBICTEST_FIREBIRD_INTERBASE_DSN" ]] ; then
b58ecb01 115 # the official version is very much outdated and does not compile on 5.14+
116 # use this rather updated source tree (needs to go to PAUSE):
117 # https://github.com/pilcrow/perl-dbd-interbase
8be58dca 118 parallel_installdeps_notest git://github.com/dbsrgits/perl-dbd-interbase.git
b58ecb01 119 fi
120
121fi
122
123# generate the makefile which will have different deps depending on
124# the runmode and envvars set above
125run_or_err "Configure on current branch" "perl Makefile.PL"
126
127# install (remaining) dependencies, sometimes with a gentle push
128if [[ "$CLEANTEST" = "true" ]]; then
129 # we may need to prepend some stuff to that list
130 HARD_DEPS="$(echo $(make listdeps))"
131
e6b373aa 132##### TEMPORARY WORKAROUNDS needed in case we will be using CPAN.pm
133 if [[ "$DEVREL_DEPS" != "true" ]] && ! CPAN_is_sane ; then
f207111d 134 # combat dzillirium on harness-wide level, otherwise breakage happens weekly
135 echo_err "$(tstamp) Ancient CPAN.pm: engaging TAP::Harness::IgnoreNonessentialDzilAutogeneratedTests during dep install"
4f6eb3d8 136 perl -MTAP::Harness\ 3.18 -e1 &>/dev/null || run_or_err "Upgrading TAP::Harness for HARNESS_SUBCLASS support" "cpan TAP::Harness"
f207111d 137 export PERL5LIB="$(pwd)/maint/travis-ci_scripts/lib:$PERL5LIB"
138 export HARNESS_SUBCLASS="TAP::Harness::IgnoreNonessentialDzilAutogeneratedTests"
139 # sanity check, T::H does not report sensible errors when the subclass fails to load
140 perl -MTAP::Harness::IgnoreNonessentialDzilAutogeneratedTests -e1
141
579472df 142 # DBD::SQLite reasonably wants DBI at config time
4f6eb3d8 143 perl -MDBI -e1 &>/dev/null || HARD_DEPS="DBI $HARD_DEPS"
579472df 144
2d64c401 145 # this is a fucked CPAN - won't understand configure_requires of
146 # various pieces we may run into
147 # FIXME - need to get these off metacpan or something instead
148 HARD_DEPS="ExtUtils::Depends B::Hooks::OP::Check $HARD_DEPS"
149
f207111d 150 # FIXME
151 # parent is temporary due to Carp https://rt.cpan.org/Ticket/Display.html?id=88494
152 HARD_DEPS="parent $HARD_DEPS"
153
154 if CPAN_supports_BUILDPL ; then
155 # We will invoke a posibly MBT based BUILD-file, but we do not support
156 # configure requires. So we not only need to install MBT but its prereqs
157 # FIXME This is madness
158 HARD_DEPS="$(extract_prereqs Module::Build::Tiny) Module::Build::Tiny $HARD_DEPS"
159 else
160 # FIXME
161 # work around Params::Validate not having a Makefile.PL so really old
162 # toolchains can not figure out what the prereqs are ;(
163 # Need to do more research before filing a bug requesting Makefile inclusion
164 HARD_DEPS="$(extract_prereqs Params::Validate) $HARD_DEPS"
165 fi
166 fi
167##### END TEMPORARY WORKAROUNDS
4e338f1b 168
579472df 169 installdeps $HARD_DEPS
b58ecb01 170
f207111d 171### FIXME in case we set it earlier in a workaround
172 if [[ -n "$HARNESS_SUBCLASS" ]] ; then
b58ecb01 173
f207111d 174 INSTALLDEPS_SKIPPED_TESTLIST=$(perl -0777 -e '
1718f21d 175my $curmod_re = qr{
176^
177 (?:
178 \QBuilding and testing\E
179 |
180 [\x20\t]* CPAN\.pm: [^\n]*? (?i:build)\S*
181 )
182
183 [\x20\t]+ (\S+)
184$}mx;
185
186my $curskip_re = qr{^ === \x20 \QSkipping nonessential autogenerated tests: \E([^\n]+) }mx;
187
188my (undef, @chunks) = (split qr/$curmod_re/, <>);
189while (@chunks) {
190 my ($mod, $log) = splice @chunks, 0, 2;
a9fc70ee 191 print "!!! Skipped nonessential tests while installing $mod:\n\t$1\n"
1718f21d 192 if $log =~ $curskip_re;
f207111d 193}
194' <<< "$LASTOUT")
b58ecb01 195
a9fc70ee 196 if [[ -n "$INSTALLDEPS_SKIPPED_TESTLIST" ]] ; then
197 POSTMORTEM="$POSTMORTEM$(
77a86bbf 198 echo
a9fc70ee 199 echo "The following non-essential tests were skipped during deps installation"
200 echo "============================================================="
201 echo "$INSTALLDEPS_SKIPPED_TESTLIST"
202 echo "============================================================="
203 echo
204 )"
205 fi
206
f207111d 207 unset HARNESS_SUBCLASS
208 fi
992a24f6 209
f207111d 210else
bd15e62e 211 parallel_installdeps_notest "$(make listdeps)"
b58ecb01 212fi
213
f207111d 214echo_err "$(tstamp) Dependency installation finished"
b58ecb01 215# this will display list of available versions
216perl Makefile.PL
217
218# make sure we got everything we need
219if [[ -n "$(make listdeps)" ]] ; then
220 echo_err "$(tstamp) Not all deps installed - something went wrong :("
221 sleep 1 # without this the echo below confuses the console listener >.<
579472df 222 CPAN_is_sane || echo_err -e "Outdated CPAN.pm used - full installdep log follows\n$INSTALLDEPS_OUT\n\nSearch for 'NOT OK' in the text above\n\nDeps still missing:"
b58ecb01 223 sleep 3 # without this the above echo confuses the console listener >.<
224 make listdeps
225 exit 1
226fi
227
4f6eb3d8 228# check that our MDV somewhat works
229if [[ "$POISON_ENV" = "true" ]] && ( perl -MDBD::SQLite\ 1.38 -e1 || perl -MDBI\ 1.615 -e1 ) &>/dev/null ; then
230 echo_err "Something went wrong - higher versions of DBI and/or DBD::SQLite than we expected"
231 exit 1
232fi
233
234
b58ecb01 235# announce what are we running
236echo_err "
237===================== DEPENDENCY CONFIGURATION COMPLETE =====================
238$(tstamp) Configuration phase seems to have taken $(date -ud "@$SECONDS" '+%H:%M:%S') (@$SECONDS)
239
b58ecb01 240= Meminfo
241$(free -m -t)
242
83da25f0 243= Diskinfo
244$(sudo df -h)
7343c211 245
83da25f0 246$(mount | grep '^/')
003e97c5 247
b58ecb01 248= Environment
3cd5047e 249$(env | grep -P 'TEST|HARNESS|MAKE|TRAVIS|PERL|DBIC' | LC_ALL=C sort | cat -v)
b58ecb01 250
251= Perl in use
252$(perl -V)
253============================================================================="