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