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