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