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