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