Work around TB1.5 hanging with 5.19 - use unreleased github patch
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 30_before_script.bash
1 #!/bin/bash
2
3 source maint/travis-ci_scripts/common.bash
4 if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
6 # poison the environment - basically look through lib, find all mentioned
7 # ENVvars and set them to true and see if anything explodes
8 if [[ "$POISON_ENV" = "true" ]] ; then
9   for var in $(grep -P '\$ENV\{' -r lib/ | grep -oP 'DBIC_\w+' | sort -u | grep -v DBIC_TRACE) ; do
10     if [[ -z "${!var}" ]] ; then
11       export $var=1
12     fi
13   done
14
15   export DBI_DSN="dbi:ODBC:server=NonexistentServerAddress"
16   export DBI_DRIVER="ADO"
17
18   export DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER=1
19 fi
20
21 if [[ "$CLEANTEST" = "true" ]]; then
22   # get the last inc/ off cpan - we will get rid of MI
23   # soon enough, but till then this will do
24   # the point is to have a *really* clean perl (the ones
25   # we build are guaranteed to be clean, without side
26   # effects from travis preinstalls)
27
28   # trick cpanm into executing true as shell - we just need the find+unpack
29   run_or_err "Downloading DBIC inc/ from CPAN" \
30     "SHELL=/bin/true cpanm --look DBIx::Class"
31
32   mv ~/.cpanm/latest-build/DBIx-Class-*/inc .
33
34   # The first CPAN which is somewhat sane is around 1.94_56 (perl 5.12)
35   # The problem is that the first sane version also brings a *lot* of
36   # deps with it, notably things like YAML and HTTP::Tiny
37   # The goal of CLEANTEST is to have as little extra stuff installed as
38   # possible, mainly to catch "but X is perl core" mistakes
39   # So instead we still use our stock (possibly old) CPAN, and add some
40   # handholding
41
42   # no configure_requires - we will need the usual suspects anyway
43   # without pre-installign these in one pass things like extract_prereqs won't work
44   CPAN_is_sane || installdeps ExtUtils::MakeMaker ExtUtils::CBuilder Module::Build
45
46 else
47   # we will be running all dbic tests - preinstall lots of stuff, run basic tests
48   # using SQLT and set up whatever databases necessary
49   export DBICTEST_SQLT_DEPLOY=1
50
51   # if we run under --dev install latest github of TB1.5 first
52   # (unreleased workaround for precedence warnings)
53   if [[ "$DEVREL_DEPS" == "true" ]] ; then
54     parallel_installdeps_notest git://github.com/nthykier/test-more.git@fix-return-precedence-issue
55   fi
56
57   # do the preinstall in several passes to minimize amount of cross-deps installing
58   # multiple times, and to avoid module re-architecture breaking another install
59   # (e.g. once Carp is upgraded there's no more Carp::Heavy,
60   # while a File::Path upgrade may cause a parallel EUMM run to fail)
61   #
62   parallel_installdeps_notest ExtUtils::MakeMaker
63   parallel_installdeps_notest File::Path
64   parallel_installdeps_notest Carp
65   parallel_installdeps_notest Module::Build Module::Runtime
66   parallel_installdeps_notest File::Spec Data::Dumper
67   parallel_installdeps_notest Test::Exception Encode::Locale Test::Fatal
68   parallel_installdeps_notest Test::Warn B::Hooks::EndOfScope Test::Differences HTTP::Status
69   parallel_installdeps_notest Test::Pod::Coverage Test::EOL Devel::GlobalDestruction Sub::Name MRO::Compat Class::XSAccessor URI::Escape HTML::Entities
70   parallel_installdeps_notest YAML LWP Class::Trigger JSON::XS DBI DateTime::Format::Builder Class::Accessor::Grouped Package::Variant
71   parallel_installdeps_notest Moose Module::Install JSON SQL::Translator File::Which
72
73   if [[ -n "DBICTEST_FIREBIRD_DSN" ]] ; then
74     # the official version is very much outdated and does not compile on 5.14+
75     # use this rather updated source tree (needs to go to PAUSE):
76     # https://github.com/pilcrow/perl-dbd-interbase
77     run_or_err "Fetching patched DBD::InterBase" \
78       "git clone https://github.com/dbsrgits/perl-dbd-interbase ~/dbd-interbase"
79
80     parallel_installdeps_notest ~/dbd-interbase/
81   fi
82
83 fi
84
85 # generate the makefile which will have different deps depending on
86 # the runmode and envvars set above
87 run_or_err "Configure on current branch" "perl Makefile.PL"
88
89 # install (remaining) dependencies, sometimes with a gentle push
90 if [[ "$CLEANTEST" = "true" ]]; then
91   # we may need to prepend some stuff to that list
92   HARD_DEPS="$(echo $(make listdeps))"
93
94 ##### TEMPORARY WORKAROUNDS
95   if ! CPAN_is_sane ; then
96     # combat dzillirium on harness-wide level, otherwise breakage happens weekly
97     echo_err "$(tstamp) Ancient CPAN.pm: engaging TAP::Harness::IgnoreNonessentialDzilAutogeneratedTests during dep install"
98     perl -MTAP::Harness=3.18 -e1 &>/dev/null || run_or_err "Upgrading TAP::Harness for HARNESS_SUBCLASS support" "cpan TAP::Harness"
99     export PERL5LIB="$(pwd)/maint/travis-ci_scripts/lib:$PERL5LIB"
100     export HARNESS_SUBCLASS="TAP::Harness::IgnoreNonessentialDzilAutogeneratedTests"
101     # sanity check, T::H does not report sensible errors when the subclass fails to load
102     perl -MTAP::Harness::IgnoreNonessentialDzilAutogeneratedTests -e1
103
104     # DBD::SQLite reasonably wants DBI at config time
105     HARD_DEPS="DBI $HARD_DEPS"
106
107     # FIXME
108     # parent is temporary due to Carp https://rt.cpan.org/Ticket/Display.html?id=88494
109     HARD_DEPS="parent $HARD_DEPS"
110
111     if CPAN_supports_BUILDPL ; then
112       # We will invoke a posibly MBT based BUILD-file, but we do not support
113       # configure requires. So we not only need to install MBT but its prereqs
114       # FIXME This is madness
115       HARD_DEPS="$(extract_prereqs Module::Build::Tiny) Module::Build::Tiny $HARD_DEPS"
116     else
117       # FIXME
118       # work around Params::Validate not having a Makefile.PL so really old
119       # toolchains can not figure out what the prereqs are ;(
120       # Need to do more research before filing a bug requesting Makefile inclusion
121       HARD_DEPS="$(extract_prereqs Params::Validate) $HARD_DEPS"
122     fi
123   fi
124 ##### END TEMPORARY WORKAROUNDS
125
126   installdeps $HARD_DEPS
127
128 ### FIXME in case we set it earlier in a workaround
129   if [[ -n "$HARNESS_SUBCLASS" ]] ; then
130
131     INSTALLDEPS_SKIPPED_TESTLIST=$(perl -0777 -e '
132 my $curmod_re = qr{
133 ^
134   (?:
135     \QBuilding and testing\E
136       |
137     [\x20\t]* CPAN\.pm: [^\n]*? (?i:build)\S*
138   )
139
140   [\x20\t]+ (\S+)
141 $}mx;
142
143 my $curskip_re = qr{^ === \x20 \QSkipping nonessential autogenerated tests: \E([^\n]+) }mx;
144
145 my (undef, @chunks) = (split qr/$curmod_re/, <>);
146 while (@chunks) {
147   my ($mod, $log) = splice @chunks, 0, 2;
148   print "!!! Skipped nonessential tests while installing $mod:\n\t$1\n"
149     if $log =~ $curskip_re;
150 }
151 ' <<< "$LASTOUT")
152
153     if [[ -n "$INSTALLDEPS_SKIPPED_TESTLIST" ]] ; then
154       POSTMORTEM="$POSTMORTEM$(
155         echo
156         echo "The following non-essential tests were skipped during deps installation"
157         echo "============================================================="
158         echo "$INSTALLDEPS_SKIPPED_TESTLIST"
159         echo "============================================================="
160         echo
161       )"
162     fi
163
164     unset HARNESS_SUBCLASS
165   fi
166
167 else
168
169   # listalldeps is deliberate - will upgrade everything it can find
170   parallel_installdeps_notest $(make listalldeps)
171
172 fi
173
174 echo_err "$(tstamp) Dependency installation finished"
175 # this will display list of available versions
176 perl Makefile.PL
177
178 # make sure we got everything we need
179 if [[ -n "$(make listdeps)" ]] ; then
180   echo_err "$(tstamp) Not all deps installed - something went wrong :("
181   sleep 1 # without this the echo below confuses the console listener >.<
182   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:"
183   sleep 3 # without this the above echo confuses the console listener >.<
184   make listdeps
185   exit 1
186 fi
187
188 # announce what are we running
189 echo_err "
190 ===================== DEPENDENCY CONFIGURATION COMPLETE =====================
191 $(tstamp) Configuration phase seems to have taken $(date -ud "@$SECONDS" '+%H:%M:%S') (@$SECONDS)
192
193 = CPUinfo
194 $(perl -0777 -p -e 's/.+\n\n(?!\z)//s' < /proc/cpuinfo)
195
196 = Meminfo
197 $(free -m -t)
198
199 = Environment
200 $(env | grep -P 'TEST|HARNESS|MAKE|TRAVIS|PERL|DBIC' | LC_ALL=C sort | cat -v)
201
202 = Perl in use
203 $(perl -V)
204 ============================================================================="