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