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