ff099c97e1941cd57446fadb47db63bbb1cbe87d
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 30_before_script.bash
1 #!/bin/bash
2
3 source maint/travis-ci_scripts/common.bash
4 if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
6 # poison the environment
7 if [[ "$POISON_ENV" = "true" ]] ; then
8
9   # look through lib, find all mentioned ENVvars and set them
10   # to true and see if anything explodes
11   for var in $(grep -P '\$ENV\{' -r lib/ | grep -oP 'DBIC_\w+' | sort -u | grep -v DBIC_TRACE) ; do
12     if [[ -z "${!var}" ]] ; then
13       export $var=1
14     fi
15   done
16
17   # bogus nonexisting DBI_*
18   export DBI_DSN="dbi:ODBC:server=NonexistentServerAddress"
19   export DBI_DRIVER="ADO"
20
21   # make sure tests do not rely on implicid order of returned results
22   export DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER=1
23
24   # emulate a local::lib-like env
25   # trick cpanm into executing true as shell - we just need the find+unpack
26   run_or_err "Downloading latest stable DBIC from CPAN" \
27     "SHELL=/bin/true cpanm --look DBIx::Class"
28
29   export PERL5LIB="$( ls -d ~/.cpanm/latest-build/DBIx-Class-*/lib | tail -n1 ):$PERL5LIB"
30
31   # perldoc -l <mod> searches $(pwd)/lib in addition to PERL5LIB etc, hence the cd /
32   echo_err "Latest stable DBIC (without deps) locatable via \$PERL5LIB at $(cd / && perldoc -l DBIx::Class)"
33 fi
34
35 if [[ "$CLEANTEST" = "true" ]]; then
36   # get the last inc/ off cpan - we will get rid of MI
37   # soon enough, but till then this will do
38   # the point is to have a *really* clean perl (the ones
39   # we build are guaranteed to be clean, without side
40   # effects from travis preinstalls)
41
42   # trick cpanm into executing true as shell - we just need the find+unpack
43   [[ -d ~/.cpanm/latest-build/DBIx-Class-*/inc ]] || run_or_err "Downloading latest stable DBIC inc/ from CPAN" \
44     "SHELL=/bin/true cpanm --look DBIx::Class"
45
46   mv ~/.cpanm/latest-build/DBIx-Class-*/inc .
47
48   # The first CPAN which is somewhat sane is around 1.94_56 (perl 5.12)
49   # The problem is that the first sane version also brings a *lot* of
50   # deps with it, notably things like YAML and HTTP::Tiny
51   # The goal of CLEANTEST is to have as little extra stuff installed as
52   # possible, mainly to catch "but X is perl core" mistakes
53   # So instead we still use our stock (possibly old) CPAN, and add some
54   # handholding
55
56   if [[ "$DEVREL_DEPS" == "true" ]] ; then
57     # Many dists still do not pass tests under tb1.5 properly (and it itself
58     # does not even install on things like 5.10). Install the *stable-dev*
59     # latest T::B here, so that it will not show up as a dependency, and
60     # hence it will not get installed a second time as an unsatisfied dep
61     # under cpanm --dev
62     #
63     # We are also not "quite ready" for SQLA 1.99, do not consider it
64     #
65     installdeps 'Test::Builder~<1.005' 'SQL::Abstract~<1.99'
66
67   elif ! CPAN_is_sane ; then
68     # no configure_requires - we will need the usual suspects anyway
69     # without pre-installing these in one pass things like extract_prereqs won't work
70     installdeps ExtUtils::MakeMaker ExtUtils::CBuilder Module::Build
71
72   fi
73
74 else
75   # we will be running all dbic tests - preinstall lots of stuff, run basic tests
76   # using SQLT and set up whatever databases necessary
77   export DBICTEST_SQLT_DEPLOY=1
78
79   # FIXME - need new TB1.5 devrel
80   # if we run under --dev install latest github of TB1.5 first
81   # (unreleased workaround for precedence warnings)
82   if [[ "$DEVREL_DEPS" == "true" ]] ; then
83     parallel_installdeps_notest git://github.com/nthykier/test-more.git@fix-return-precedence-issue
84   fi
85
86   # do the preinstall in several passes to minimize amount of cross-deps installing
87   # multiple times, and to avoid module re-architecture breaking another install
88   # (e.g. once Carp is upgraded there's no more Carp::Heavy,
89   # while a File::Path upgrade may cause a parallel EUMM run to fail)
90   #
91   parallel_installdeps_notest ExtUtils::MakeMaker
92   parallel_installdeps_notest File::Path
93   parallel_installdeps_notest Carp
94   parallel_installdeps_notest Module::Build
95   parallel_installdeps_notest File::Spec Data::Dumper Module::Runtime
96   parallel_installdeps_notest Test::Exception Encode::Locale Test::Fatal
97   parallel_installdeps_notest Test::Warn B::Hooks::EndOfScope Test::Differences HTTP::Status
98   parallel_installdeps_notest Test::Pod::Coverage Test::EOL Devel::GlobalDestruction Sub::Name MRO::Compat Class::XSAccessor URI::Escape HTML::Entities
99   parallel_installdeps_notest YAML LWP Class::Trigger JSON::XS DBI DateTime::Format::Builder Class::Accessor::Grouped Package::Variant
100   parallel_installdeps_notest 'SQL::Abstract~<1.99' Moose Module::Install JSON SQL::Translator File::Which
101
102   if [[ -n "DBICTEST_FIREBIRD_DSN" ]] ; then
103     # the official version is very much outdated and does not compile on 5.14+
104     # use this rather updated source tree (needs to go to PAUSE):
105     # https://github.com/pilcrow/perl-dbd-interbase
106     parallel_installdeps_notest git://github.com/dbsrgits/perl-dbd-interbase.git
107   fi
108
109 fi
110
111 # generate the makefile which will have different deps depending on
112 # the runmode and envvars set above
113 run_or_err "Configure on current branch" "perl Makefile.PL"
114
115 # install (remaining) dependencies, sometimes with a gentle push
116 if [[ "$CLEANTEST" = "true" ]]; then
117   # we may need to prepend some stuff to that list
118   HARD_DEPS="$(echo $(make listdeps))"
119
120 ##### TEMPORARY WORKAROUNDS needed in case we will be using CPAN.pm
121   if [[ "$DEVREL_DEPS" != "true" ]] && ! CPAN_is_sane ; then
122     # combat dzillirium on harness-wide level, otherwise breakage happens weekly
123     echo_err "$(tstamp) Ancient CPAN.pm: engaging TAP::Harness::IgnoreNonessentialDzilAutogeneratedTests during dep install"
124     perl -MTAP::Harness=3.18 -e1 &>/dev/null || run_or_err "Upgrading TAP::Harness for HARNESS_SUBCLASS support" "cpan TAP::Harness"
125     export PERL5LIB="$(pwd)/maint/travis-ci_scripts/lib:$PERL5LIB"
126     export HARNESS_SUBCLASS="TAP::Harness::IgnoreNonessentialDzilAutogeneratedTests"
127     # sanity check, T::H does not report sensible errors when the subclass fails to load
128     perl -MTAP::Harness::IgnoreNonessentialDzilAutogeneratedTests -e1
129
130     # DBD::SQLite reasonably wants DBI at config time
131     HARD_DEPS="DBI $HARD_DEPS"
132
133     # this is a fucked CPAN - won't understand configure_requires of
134     # various pieces we may run into
135     # FIXME - need to get these off metacpan or something instead
136     HARD_DEPS="ExtUtils::Depends B::Hooks::OP::Check $HARD_DEPS"
137
138     # FIXME
139     # parent is temporary due to Carp https://rt.cpan.org/Ticket/Display.html?id=88494
140     HARD_DEPS="parent $HARD_DEPS"
141
142     if CPAN_supports_BUILDPL ; then
143       # We will invoke a posibly MBT based BUILD-file, but we do not support
144       # configure requires. So we not only need to install MBT but its prereqs
145       # FIXME This is madness
146       HARD_DEPS="$(extract_prereqs Module::Build::Tiny) Module::Build::Tiny $HARD_DEPS"
147     else
148       # FIXME
149       # work around Params::Validate not having a Makefile.PL so really old
150       # toolchains can not figure out what the prereqs are ;(
151       # Need to do more research before filing a bug requesting Makefile inclusion
152       HARD_DEPS="$(extract_prereqs Params::Validate) $HARD_DEPS"
153     fi
154   fi
155 ##### END TEMPORARY WORKAROUNDS
156
157   installdeps $HARD_DEPS
158
159 ### FIXME in case we set it earlier in a workaround
160   if [[ -n "$HARNESS_SUBCLASS" ]] ; then
161
162     INSTALLDEPS_SKIPPED_TESTLIST=$(perl -0777 -e '
163 my $curmod_re = qr{
164 ^
165   (?:
166     \QBuilding and testing\E
167       |
168     [\x20\t]* CPAN\.pm: [^\n]*? (?i:build)\S*
169   )
170
171   [\x20\t]+ (\S+)
172 $}mx;
173
174 my $curskip_re = qr{^ === \x20 \QSkipping nonessential autogenerated tests: \E([^\n]+) }mx;
175
176 my (undef, @chunks) = (split qr/$curmod_re/, <>);
177 while (@chunks) {
178   my ($mod, $log) = splice @chunks, 0, 2;
179   print "!!! Skipped nonessential tests while installing $mod:\n\t$1\n"
180     if $log =~ $curskip_re;
181 }
182 ' <<< "$LASTOUT")
183
184     if [[ -n "$INSTALLDEPS_SKIPPED_TESTLIST" ]] ; then
185       POSTMORTEM="$POSTMORTEM$(
186         echo
187         echo "The following non-essential tests were skipped during deps installation"
188         echo "============================================================="
189         echo "$INSTALLDEPS_SKIPPED_TESTLIST"
190         echo "============================================================="
191         echo
192       )"
193     fi
194
195     unset HARNESS_SUBCLASS
196   fi
197
198 else
199
200   # listalldeps is deliberate - will upgrade everything it can find
201   # we exclude SQLA specifically, since we do not want to pull
202   # in 1.99_xx on bleadcpan runs
203   parallel_installdeps_notest $(make listalldeps | grep -vP 'SQL::Abstract')
204
205 fi
206
207 echo_err "$(tstamp) Dependency installation finished"
208 # this will display list of available versions
209 perl Makefile.PL
210
211 # make sure we got everything we need
212 if [[ -n "$(make listdeps)" ]] ; then
213   echo_err "$(tstamp) Not all deps installed - something went wrong :("
214   sleep 1 # without this the echo below confuses the console listener >.<
215   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:"
216   sleep 3 # without this the above echo confuses the console listener >.<
217   make listdeps
218   exit 1
219 fi
220
221 # announce what are we running
222 echo_err "
223 ===================== DEPENDENCY CONFIGURATION COMPLETE =====================
224 $(tstamp) Configuration phase seems to have taken $(date -ud "@$SECONDS" '+%H:%M:%S') (@$SECONDS)
225
226 = CPUinfo
227 $(perl -0777 -p -e 's/.+\n\n(?!\z)//s' < /proc/cpuinfo)
228
229 = Meminfo
230 $(free -m -t)
231
232 = Kernel info
233 $(uname -a)
234
235 = Network Configuration
236 $(ip addr)
237
238 = Network Sockets Status
239 $(sudo netstat -an46p | grep -Pv '\s(CLOSING|(FIN|TIME|CLOSE)_WAIT.?|LAST_ACK)\s')
240
241 = Environment
242 $(env | grep -P 'TEST|HARNESS|MAKE|TRAVIS|PERL|DBIC' | LC_ALL=C sort | cat -v)
243
244 = Perl in use
245 $(perl -V)
246 ============================================================================="