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