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