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