THROW AWAY this commit on rebase - dirty bootstrap
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 30_before_script.bash
1 #!/bin/bash
2
3 source maint/travis-ci_scripts/common.bash
4 if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
6 # poison the environment - basically look through lib, find all mentioned
7 # ENVvars and set them to true and see if anything explodes
8 if [[ "$POISON_ENV" = "true" ]] ; then
9   for var in $(grep -P '\$ENV\{' -r lib/ | grep -oP 'DBIC_\w+' | sort -u | grep -v DBIC_TRACE) ; do
10     if [[ -z "${!var}" ]] ; then
11       export $var=1
12     fi
13   done
14
15   export DBI_DSN="dbi:ODBC:server=NonexistentServerAddress"
16   export DBI_DRIVER="ADO"
17
18   export DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER=1
19 fi
20
21 if [[ "$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
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
41
42   # no configure_requires - we will need the usual suspects anyway
43   # without pre-installign these in one pass things like extract_prereqs won't work
44   CPAN_is_sane || installdeps ExtUtils::MakeMaker ExtUtils::CBuilder Module::Build
45
46 else
47   # we will be running all dbic tests - preinstall lots of stuff, run basic tests
48   # using SQLT and set up whatever databases necessary
49   export DBICTEST_SQLT_DEPLOY=1
50
51   # do the preinstall in several passes to minimize amount of cross-deps installing
52   # multiple times, and to avoid module re-architecture breaking another install
53   # (e.g. once Carp is upgraded there's no more Carp::Heavy,
54   # while a File::Path upgrade may cause a parallel EUMM run to fail)
55   #
56   parallel_installdeps_notest ExtUtils::MakeMaker
57   parallel_installdeps_notest File::Path
58   parallel_installdeps_notest Carp
59   parallel_installdeps_notest Module::Build Module::Runtime
60   parallel_installdeps_notest File::Spec Data::Dumper
61   parallel_installdeps_notest Test::Exception Encode::Locale Test::Fatal R/RS/RSAVAGE/Tree-DAG_Node-1.13.tgz
62   parallel_installdeps_notest Test::Warn B::Hooks::EndOfScope Test::Differences HTTP::Status
63   parallel_installdeps_notest Test::Pod::Coverage Test::EOL Devel::GlobalDestruction Sub::Name MRO::Compat Class::XSAccessor URI::Escape HTML::Entities
64   parallel_installdeps_notest YAML LWP Class::Trigger JSON::XS DBI DateTime::Format::Builder Class::Accessor::Grouped Package::Variant
65   parallel_installdeps_notest Moose Module::Install JSON SQL::Translator File::Which indirect multidimensional bareword::filehandles
66
67   if [[ -n "DBICTEST_FIREBIRD_DSN" ]] ; then
68     # the official version is very much outdated and does not compile on 5.14+
69     # use this rather updated source tree (needs to go to PAUSE):
70     # https://github.com/pilcrow/perl-dbd-interbase
71     run_or_err "Fetching patched DBD::InterBase" \
72       "git clone https://github.com/dbsrgits/perl-dbd-interbase ~/dbd-interbase"
73
74     parallel_installdeps_notest ~/dbd-interbase/
75   fi
76
77 fi
78
79 # generate the makefile which will have different deps depending on
80 # the runmode and envvars set above
81 run_or_err "Configure on current branch" "perl Makefile.PL"
82
83 # install (remaining) dependencies, sometimes with a gentle push
84 if [[ "$CLEANTEST" = "true" ]]; then
85   # we may need to prepend some stuff to that list
86   HARD_DEPS="$(echo $(make listdeps))"
87
88 ##### TEMPORARY WORKAROUNDS
89   if ! CPAN_is_sane ; then
90     # combat dzillirium on harness-wide level, otherwise breakage happens weekly
91     echo_err "$(tstamp) Ancient CPAN.pm: engaging TAP::Harness::IgnoreNonessentialDzilAutogeneratedTests during dep install"
92     perl -MTAP::Harness=3.18 -e1 &>/dev/null || run_or_err "Upgrading TAP::Harness for HARNESS_SUBCLASS support" "cpan TAP::Harness"
93     export PERL5LIB="$(pwd)/maint/travis-ci_scripts/lib:$PERL5LIB"
94     export HARNESS_SUBCLASS="TAP::Harness::IgnoreNonessentialDzilAutogeneratedTests"
95     # sanity check, T::H does not report sensible errors when the subclass fails to load
96     perl -MTAP::Harness::IgnoreNonessentialDzilAutogeneratedTests -e1
97
98     # DBD::SQLite reasonably wants DBI at config time
99     HARD_DEPS="DBI $HARD_DEPS"
100
101     # FIXME
102     # parent is temporary due to Carp https://rt.cpan.org/Ticket/Display.html?id=88494
103     HARD_DEPS="parent $HARD_DEPS"
104
105     if CPAN_supports_BUILDPL ; then
106       # We will invoke a posibly MBT based BUILD-file, but we do not support
107       # configure requires. So we not only need to install MBT but its prereqs
108       # FIXME This is madness
109       HARD_DEPS="$(extract_prereqs Module::Build::Tiny) Module::Build::Tiny $HARD_DEPS"
110     else
111       # FIXME
112       # work around Params::Validate not having a Makefile.PL so really old
113       # toolchains can not figure out what the prereqs are ;(
114       # Need to do more research before filing a bug requesting Makefile inclusion
115       HARD_DEPS="$(extract_prereqs Params::Validate) $HARD_DEPS"
116     fi
117   fi
118 ##### END TEMPORARY WORKAROUNDS
119
120   installdeps $HARD_DEPS
121
122 ### FIXME in case we set it earlier in a workaround
123   if [[ -n "$HARNESS_SUBCLASS" ]] ; then
124
125     INSTALLDEPS_SKIPPED_TESTLIST=$(perl -0777 -e '
126 my $in = <>;
127 my $re = qr(
128   ^ (?: \QBuilding and testing\E | \s* CPAN\.pm: .+? (?i:build)\S* ) \s+ (\S+)
129   .*?
130   ^ === \s \QSkipping nonessential autogenerated tests: \E([^\n]+)
131 )msx;
132 while ( $in =~ /$re/g ) {
133   print "!!! Skipped nonessential tests while installing $1: $2\n"
134 }
135 ' <<< "$LASTOUT")
136
137     unset HARNESS_SUBCLASS
138   fi
139
140 else
141   if [[ -n "$TEST_BUILDER_BETA_CPAN_TARBALL" ]] ; then
142     parallel_installdeps_notest $TEST_BUILDER_BETA_CPAN_TARBALL
143   fi
144
145   # listalldeps is deliberate - will upgrade everything it can find
146   parallel_installdeps_notest $(make listalldeps)
147 fi
148
149 echo_err "$(tstamp) Dependency installation finished"
150 # this will display list of available versions
151 perl Makefile.PL
152
153 # make sure we got everything we need
154 if [[ -n "$(make listdeps)" ]] ; then
155   echo_err "$(tstamp) Not all deps installed - something went wrong :("
156   sleep 1 # without this the echo below confuses the console listener >.<
157   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:"
158   sleep 3 # without this the above echo confuses the console listener >.<
159   make listdeps
160   exit 1
161 fi
162
163 # announce what are we running
164 echo_err "
165 ===================== DEPENDENCY CONFIGURATION COMPLETE =====================
166 $(tstamp) Configuration phase seems to have taken $(date -ud "@$SECONDS" '+%H:%M:%S') (@$SECONDS)
167
168 = CPUinfo
169 $(perl -0777 -p -e 's/.+\n\n(?!\z)//s' < /proc/cpuinfo)
170
171 = Meminfo
172 $(free -m -t)
173
174 = Environment
175 $(env | grep -P 'TEST|TRAVIS|PERL|DBIC' | LC_ALL=C sort | cat -v)
176
177 = Perl in use
178 $(perl -V)
179 ============================================================================="