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