1de6cfb65d047bcb47f0a93b8557d61da903fcb2
[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 DEVREL_DEPS prereq-install stage won't mix with MVDT
9 # DEVREL wins
10 if [[ "$DEVREL_DEPS" == "true" ]] ; then
11   export MVDT=""
12 fi
13
14 # Need a shitton of patches to run on cperl (luckily all provided)
15 if is_cperl ; then
16
17   run_or_err "Downloading and installing cperl distroprefs" '
18     wget -qO- https://github.com/rurban/distroprefs/archive/master.tar.gz |\
19     tar -C $HOME/.cpan --strip-components 1 -zx distroprefs-master/prefs distroprefs-master/sources
20   '
21
22   # Argh -DFORTIFY_INC!!!
23   # FIXME - remove when M::I is gone
24   export PERL5LIB="$PERL5LIB:."
25
26   # Also need to have YAML in place, otherwise the distroprefs are not readable
27   # work around https://github.com/perl11/cperl/issues/155#issuecomment-224862978
28   perl -MYAML -e1 &>/dev/null || installdeps YAML
29
30 fi
31
32
33 # announce what are we running
34 echo_err "$(ci_vm_state_text)"
35
36
37 # FIXME - this is a kludge in place of proper MVDT testing. For the time
38 # being simply use the minimum versions of our DBI/DBDstack, to avoid
39 # fuckups like 0.08260 (went unnoticed for 5 months)
40 if [[ "$MVDT" == "true" ]] ; then
41
42   # use url-spec for DBI due to https://github.com/miyagawa/cpanminus/issues/328
43   if [[ "$CLEANTEST" != "true" ]] || perl -M5.013003 -e1 &>/dev/null ; then
44     # the fulltest may re-upgrade DBI, be conservative only on cleantests
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
48     # FIXME work around DBD::DB2 being silly: https://rt.cpan.org/Ticket/Display.html?id=101659
49     if [[ -n "$DBICTEST_DB2_DSN" ]] ; then
50       echo_err "Installing same DBI version into the main perl (above the current local::lib)"
51       $SHELL -lic "perlbrew use $( perlbrew use | grep -oP '(?<=Currently using )[^@]+' ) && parallel_installdeps_notest T/TI/TIMB/DBI-1.614.tar.gz"
52     fi
53   else
54     parallel_installdeps_notest T/TI/TIMB/DBI-1.57.tar.gz
55
56     # FIXME work around DBD::DB2 being silly: https://rt.cpan.org/Ticket/Display.html?id=101659
57     if [[ -n "$DBICTEST_DB2_DSN" ]] ; then
58       echo_err "Installing same DBI version into the main perl (above the current local::lib)"
59       $SHELL -lic "perlbrew use $( perlbrew use | grep -oP '(?<=Currently using )[^@]+' ) && parallel_installdeps_notest T/TI/TIMB/DBI-1.57.tar.gz"
60     fi
61   fi
62
63   # Test both minimum DBD::SQLite and minimum BigInt SQLite
64   # reverse the logic from above for this (low on full, higher on clean)
65   if [[ "$CLEANTEST" = "true" ]]; then
66     parallel_installdeps_notest DBD::SQLite@1.37
67   else
68     parallel_installdeps_notest DBD::SQLite@1.29
69   fi
70 fi
71
72 #
73 # try minimal fully tested installs *without* a compiler (with some exceptions of course)
74 if [[ "$BREAK_CC" == "true" ]] ; then
75
76   [[ "$CLEANTEST" != "true" ]] && echo_err "Breaking the compiler without CLEANTEST makes no sense" && exit 1
77
78   # FIXME - working around RT#74707, https://metacpan.org/source/DOY/Package-Stash-0.37/Makefile.PL#L112-122
79   #
80   # DEVREL_DEPS means our installer is cpanm, which will respect failures
81   # and the like, so stuff soft-failing (failed deps that are not in fact
82   # needed) will not fly. Add *EVEN MORE* stuff that needs a compiler
83   #
84   # FIXME - the PathTools 3.47 is to work around https://rt.cpan.org/Ticket/Display.html?id=107392
85   #
86   installdeps Sub::Name Clone Package::Stash::XS \
87               $( [[ "$DEVREL_DEPS" == "true" ]] && ( perl -MFile::Spec\ 3.13 -e1 &>/dev/null || echo "S/SM/SMUELLER/PathTools-3.47.tar.gz" ) ) \
88               $( perl -MDBI -e1 &>/dev/null || echo "DBI" ) \
89               $( perl -MDBD::SQLite -e1 &>/dev/null || echo "DBD::SQLite" )
90
91   mkdir -p "$HOME/bin" # this is already in $PATH, just doesn't exist
92   run_or_err "Linking ~/bin/cc to /bin/false - thus essentially BREAKING the C compiler" \
93              "ln -s /bin/false $HOME/bin/cc"
94
95   # FIXME: working around RT#113682, and some other unfiled bugs
96   installdeps Module::Build Devel::GlobalDestruction Class::Accessor::Grouped
97
98   run_or_err "Linking ~/bin/cc to /bin/true - BREAKING the C compiler even harder" \
99              "ln -fs /bin/true $HOME/bin/cc"
100 fi
101
102 if [[ "$CLEANTEST" = "true" ]]; then
103   # get the last inc/ off cpan - we will get rid of MI
104   # soon enough, but till then this will do
105   # the point is to have a *really* clean perl (the ones
106   # we build are guaranteed to be clean, without side
107   # effects from travis preinstalls)
108   #
109   # trick cpanm into executing true as shell - we just need the find+unpack
110   [[ -d ~/.cpanm/latest-build/DBIx-Class-*/inc ]] || run_or_err "Downloading latest stable DBIC inc/ from CPAN" \
111     "SHELL=/bin/true cpanm --look DBIx::Class"
112
113   mv ~/.cpanm/latest-build/DBIx-Class-*/inc .
114
115   # The first CPAN which is somewhat sane is around 1.94_56 (perl 5.12)
116   # The problem is that the first sane version also brings a *lot* of
117   # deps with it, notably things like YAML and HTTP::Tiny
118   # The goal of CLEANTEST is to have as little extra stuff installed as
119   # possible, mainly to catch "but X is perl core" mistakes
120   # So instead we still use our stock (possibly old) CPAN, and add some
121   # handholding
122
123   if [[ "$DEVREL_DEPS" = "true" ]] ; then
124     # nothing for now
125     /bin/true
126   elif ! CPAN_is_sane ; then
127     # no configure_requires - we will need the usual suspects anyway
128     # without pre-installing these in one pass things won't yet work
129     installdeps Module::Build
130   fi
131
132 else
133   # we will be running all dbic tests - preinstall lots of stuff, run basic tests
134
135   # do the preinstall in several passes to minimize amount of cross-deps installing
136   # multiple times, and to avoid module re-architecture breaking another install
137   # (e.g. once Carp is upgraded there's no more Carp::Heavy)
138   #
139   parallel_installdeps_notest Carp
140   parallel_installdeps_notest Module::Build
141   parallel_installdeps_notest Test::Exception Encode::Locale Test::Fatal Module::Runtime
142   parallel_installdeps_notest Test::Warn B::Hooks::EndOfScope Test::Differences HTTP::Status
143   parallel_installdeps_notest Test::Pod::Coverage Test::EOL Devel::GlobalDestruction Sub::Name MRO::Compat Class::XSAccessor URI::Escape HTML::Entities
144   parallel_installdeps_notest YAML LWP Class::Trigger Class::Accessor::Grouped Package::Variant
145   parallel_installdeps_notest SQL::Abstract Moose Module::Install@1.15 JSON SQL::Translator File::Which Class::DBI::Plugin git://github.com/dbsrgits/perl-pperl.git
146
147   # FIXME - temp workaround for RT#117959
148   if ! perl -M5.008004 -e1 &>/dev/null ; then
149     parallel_installdeps_notest DateTime::Locale@1.06
150     parallel_installdeps_notest DateTime::TimeZone@2.02
151     parallel_installdeps_notest DateTime@1.38
152   fi
153
154   # the official version is very much outdated and does not compile on 5.14+
155   # use this rather updated source tree (needs to go to PAUSE):
156   # https://github.com/pilcrow/perl-dbd-interbase
157   if [[ -n "$DBICTEST_FIREBIRD_INTERBASE_DSN" ]] ; then
158     parallel_installdeps_notest git://github.com/dbsrgits/perl-dbd-interbase.git
159   fi
160
161   # SCGI does not install under < 5.8.8 perls nor under parallel make
162   # FIXME: The 5.8.8 thing is likely fixable, something to do with
163   # #define speedy_new(s,n,t) Newx(s,n,t)
164   if perl -M5.008008 -e 1 &>/dev/null ; then
165     MAKEFLAGS="" bash -c "parallel_installdeps_notest git://github.com/dbsrgits/cgi-speedycgi.git"
166   fi
167 fi
168
169
170 # install (remaining) dependencies, sometimes with a gentle push
171 if [[ "$CLEANTEST" = "true" ]]; then
172
173   run_or_err "Configure on current branch" "perl Makefile.PL"
174
175   # we are doing a devrel pass - try to upgrade *everything* (we will be using cpanm so safe-ish)
176   if [[ "$DEVREL_DEPS" == "true" ]] ; then
177
178     HARD_DEPS="$(make listalldeps | sort -R)"
179
180   else
181
182     HARD_DEPS="$(make listdeps | sort -R)"
183
184 ##### TEMPORARY WORKAROUNDS needed in case we will be using a fucked CPAN.pm
185     if ! CPAN_is_sane ; then
186
187       # DBD::SQLite reasonably wants DBI at config time
188       perl -MDBI -e1 &>/dev/null || HARD_DEPS="DBI $HARD_DEPS"
189
190     fi
191
192 ##### END TEMPORARY WORKAROUNDS
193   fi
194
195   # FIXME - work around RT#117844
196   if [[ "$BREWVER" == "5.10.0" ]]; then
197     unset PERL_UNICODE
198   fi
199
200   installdeps $HARD_DEPS
201
202   run_or_err "Re-configure" "perl Makefile.PL"
203
204 else
205
206   run_or_err "Configure on current branch with --with-optdeps" "perl Makefile.PL --with-optdeps"
207
208   # FIXME - evil evil work around for https://github.com/Manwar/Test-Strict/issues/17
209   if perl -M5.025 -e1 &>/dev/null; then
210     mkdir -p "$( perl -MConfig -e 'print $Config{sitelib}' )/Devel"
211     cat <<MyDevelCover > "$( perl -MConfig -e 'print $Config{sitelib}' )/Devel/Cover.pm"
212 package Devel::Cover;
213 our \$VERSION = 0.43;
214 1;
215 MyDevelCover
216   fi
217
218   # if we are smoking devrels - make sure we upgrade everything we know about
219   if [[ "$DEVREL_DEPS" == "true" ]] ; then
220     parallel_installdeps_notest "$(make listalldeps | sort -R)"
221   else
222     parallel_installdeps_notest "$(make listdeps | sort -R)"
223   fi
224
225   run_or_err "Re-configure with --with-optdeps" "perl Makefile.PL --with-optdeps"
226 fi
227
228 echo_err "$(tstamp) Dependency installation finished"
229
230 # make sure we got everything we need
231 if [[ -n "$(make listdeps)" ]] ; then
232   echo_err "$(tstamp) Not all deps installed - something went wrong :("
233   sleep 1 # without this the echo below confuses the console listener >.<
234   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:"
235   sleep 3 # without this the above echo confuses the console listener >.<
236   make listdeps
237   exit 1
238 fi
239
240 # check that our MVDT somewhat works
241 if [[ "$MVDT" == "true" ]] && ( perl -MDBD::SQLite\ 1.38 -e1 || perl -MDBI\ 1.615 -e1 ) &>/dev/null ; then
242   echo_err "Something went wrong - higher versions of DBI and/or DBD::SQLite than we expected"
243   exit 1
244 fi
245
246 if [[ "$CLEANTEST" = "true" ]] && perl -MModule::Build::Tiny -e1 &>/dev/null ; then
247   echo_err "Module::Build::Tiny pulled in during the basic depchain install - this must not happen"
248   exit 1
249 fi
250
251 echo_err "
252 ===================== DEPENDENCY CONFIGURATION COMPLETE =====================
253 $(tstamp) Configuration phase seems to have taken $(date -ud "@$SECONDS" '+%H:%M:%S') (@$SECONDS)"