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