(travis) Reshuffle CI workflow, prepare for better instrumentation of failures
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 30_before_script.bash
1 #!/bin/bash
2
3 # this file is executed in a subshell - set up the common stuff
4 source maint/travis-ci_scripts/common.bash
5
6 if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then exit 0 ; fi
7
8 # FIXME - this is a kludge in place of proper MDV testing. For the time
9 # being simply use the minimum versions of our DBI/DBDstack, to avoid
10 # fuckups like 0.08260 (went unnoticed for 5 months)
11 if [[ "$POISON_ENV" = "true" ]] ; then
12
13   # use url-spec for DBI due to https://github.com/miyagawa/cpanminus/issues/328
14   if perl -M5.013003 -e1 &>/dev/null ; then
15     # earlier DBI will not compile without PERL_POLLUTE which was gone in 5.14
16     parallel_installdeps_notest T/TI/TIMB/DBI-1.614.tar.gz
17   else
18     parallel_installdeps_notest T/TI/TIMB/DBI-1.57.tar.gz
19   fi
20
21   # Test both minimum DBD::SQLite and minimum BigInt SQLite
22   if [[ "$CLEANTEST" = "true" ]]; then
23     parallel_installdeps_notest DBD::SQLite@1.37
24   else
25     parallel_installdeps_notest DBD::SQLite@1.29
26   fi
27
28 fi
29
30 if [[ "$CLEANTEST" = "true" ]]; then
31   # get the last inc/ off cpan - we will get rid of MI
32   # soon enough, but till then this will do
33   # the point is to have a *really* clean perl (the ones
34   # we build are guaranteed to be clean, without side
35   # effects from travis preinstalls)
36
37   # trick cpanm into executing true as shell - we just need the find+unpack
38   [[ -d ~/.cpanm/latest-build/DBIx-Class-*/inc ]] || run_or_err "Downloading latest stable DBIC inc/ from CPAN" \
39     "SHELL=/bin/true cpanm --look DBIx::Class"
40
41   mv ~/.cpanm/latest-build/DBIx-Class-*/inc .
42
43   # The first CPAN which is somewhat sane is around 1.94_56 (perl 5.12)
44   # The problem is that the first sane version also brings a *lot* of
45   # deps with it, notably things like YAML and HTTP::Tiny
46   # The goal of CLEANTEST is to have as little extra stuff installed as
47   # possible, mainly to catch "but X is perl core" mistakes
48   # So instead we still use our stock (possibly old) CPAN, and add some
49   # handholding
50
51   if [[ "$DEVREL_DEPS" == "true" ]] ; then
52     # We are not "quite ready" for SQLA 1.99, do not consider it
53     #
54     installdeps 'SQL::Abstract~<1.99'
55
56   else
57
58     if ! CPAN_is_sane ; then
59       # no configure_requires - we will need the usual suspects anyway
60       # without pre-installing these in one pass things like extract_prereqs won't work
61       installdeps ExtUtils::MakeMaker ExtUtils::CBuilder Module::Build
62     fi
63
64     # FIXME - temporary until 1.46 comes out / RT#99747 is fixed
65     # insufficient testing of 5.8.3, ned older DBD::SQlite, ribasushi--
66     if ! perl -M5.008004 -e 1 &>/dev/null ; then
67       installdeps DBI I/IS/ISHIGAKI/DBD-SQLite-1.42.tar.gz
68     fi
69
70   fi
71
72 else
73   # we will be running all dbic tests - preinstall lots of stuff, run basic tests
74
75   # do the preinstall in several passes to minimize amount of cross-deps installing
76   # multiple times, and to avoid module re-architecture breaking another install
77   # (e.g. once Carp is upgraded there's no more Carp::Heavy,
78   # while a File::Path upgrade may cause a parallel EUMM run to fail)
79   #
80   parallel_installdeps_notest ExtUtils::MakeMaker
81   parallel_installdeps_notest File::Path
82   parallel_installdeps_notest Carp
83   parallel_installdeps_notest Module::Build
84   parallel_installdeps_notest File::Spec Data::Dumper Module::Runtime
85   parallel_installdeps_notest Test::Exception Encode::Locale Test::Fatal
86   parallel_installdeps_notest Test::Warn B::Hooks::EndOfScope Test::Differences HTTP::Status
87   parallel_installdeps_notest Test::Pod::Coverage Test::EOL Devel::GlobalDestruction Sub::Name MRO::Compat Class::XSAccessor URI::Escape HTML::Entities
88   parallel_installdeps_notest YAML LWP Class::Trigger JSON::XS DateTime::Format::Builder Class::Accessor::Grouped Package::Variant
89   parallel_installdeps_notest SQL::Abstract Moose Module::Install JSON SQL::Translator File::Which
90
91   if [[ -n "$DBICTEST_FIREBIRD_INTERBASE_DSN" ]] ; then
92     # the official version is very much outdated and does not compile on 5.14+
93     # use this rather updated source tree (needs to go to PAUSE):
94     # https://github.com/pilcrow/perl-dbd-interbase
95     parallel_installdeps_notest git://github.com/dbsrgits/perl-dbd-interbase.git
96   fi
97
98 fi
99
100 # generate the makefile which will have different deps depending on
101 # the runmode and envvars set above
102 run_or_err "Configure on current branch" "perl Makefile.PL"
103
104 # install (remaining) dependencies, sometimes with a gentle push
105 if [[ "$CLEANTEST" = "true" ]]; then
106   # we may need to prepend some stuff to that list
107   HARD_DEPS="$(echo $(make listdeps))"
108
109 ##### TEMPORARY WORKAROUNDS needed in case we will be using CPAN.pm
110   if [[ "$DEVREL_DEPS" != "true" ]] && ! CPAN_is_sane ; then
111
112     # DBD::SQLite reasonably wants DBI at config time
113     perl -MDBI -e1 &>/dev/null || HARD_DEPS="DBI $HARD_DEPS"
114
115     # this is a fucked CPAN - won't understand configure_requires of
116     # various pieces we may run into
117     # FIXME - need to get these off metacpan or something instead
118     HARD_DEPS="ExtUtils::Depends B::Hooks::OP::Check $HARD_DEPS"
119
120     # FIXME
121     # parent is temporary due to Carp https://rt.cpan.org/Ticket/Display.html?id=88494
122     HARD_DEPS="parent $HARD_DEPS"
123
124     if CPAN_supports_BUILDPL ; then
125       # We will invoke a posibly MBT based BUILD-file, but we do not support
126       # configure requires. So we not only need to install MBT but its prereqs
127       # FIXME This is madness
128       HARD_DEPS="$(extract_prereqs Module::Build::Tiny) Module::Build::Tiny $HARD_DEPS"
129     else
130       # FIXME
131       # work around Params::Validate not having a Makefile.PL so really old
132       # toolchains can not figure out what the prereqs are ;(
133       # Need to do more research before filing a bug requesting Makefile inclusion
134       HARD_DEPS="$(extract_prereqs Params::Validate) $HARD_DEPS"
135     fi
136   fi
137 ##### END TEMPORARY WORKAROUNDS
138
139   installdeps $HARD_DEPS
140
141 ### FIXME in case we set it earlier in a workaround
142   if [[ -n "$HARNESS_SUBCLASS" ]] ; then
143
144     INSTALLDEPS_SKIPPED_TESTLIST=$(perl -0777 -e '
145 my $curmod_re = qr{
146 ^
147   (?:
148     \QBuilding and testing\E
149       |
150     [\x20\t]* CPAN\.pm: [^\n]*? (?i:build)\S*
151   )
152
153   [\x20\t]+ (\S+)
154 $}mx;
155
156 my $curskip_re = qr{^ === \x20 \QSkipping nonessential autogenerated tests: \E([^\n]+) }mx;
157
158 my (undef, @chunks) = (split qr/$curmod_re/, <>);
159 while (@chunks) {
160   my ($mod, $log) = splice @chunks, 0, 2;
161   print "!!! Skipped nonessential tests while installing $mod:\n\t$1\n"
162     if $log =~ $curskip_re;
163 }
164 ' <<< "$LASTOUT")
165
166     if [[ -n "$INSTALLDEPS_SKIPPED_TESTLIST" ]] ; then
167       POSTMORTEM="$POSTMORTEM$(
168         echo
169         echo "The following non-essential tests were skipped during deps installation"
170         echo "============================================================="
171         echo "$INSTALLDEPS_SKIPPED_TESTLIST"
172         echo "============================================================="
173         echo
174       )"
175     fi
176
177     unset HARNESS_SUBCLASS
178   fi
179
180 else
181   parallel_installdeps_notest "$(make listdeps)"
182 fi
183
184 echo_err "$(tstamp) Dependency installation finished"
185 # this will display list of available versions
186 perl Makefile.PL
187
188 # make sure we got everything we need
189 if [[ -n "$(make listdeps)" ]] ; then
190   echo_err "$(tstamp) Not all deps installed - something went wrong :("
191   sleep 1 # without this the echo below confuses the console listener >.<
192   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:"
193   sleep 3 # without this the above echo confuses the console listener >.<
194   make listdeps
195   exit 1
196 fi
197
198 # check that our MDV somewhat works
199 if [[ "$POISON_ENV" = "true" ]] && ( perl -MDBD::SQLite\ 1.38 -e1 || perl -MDBI\ 1.615 -e1 ) &>/dev/null ; then
200   echo_err "Something went wrong - higher versions of DBI and/or DBD::SQLite than we expected"
201   exit 1
202 fi
203
204
205 # announce what are we running
206 echo_err "
207 ===================== DEPENDENCY CONFIGURATION COMPLETE =====================
208 $(tstamp) Configuration phase seems to have taken $(date -ud "@$SECONDS" '+%H:%M:%S') (@$SECONDS)
209
210 $(ci_vm_state_text)"