(travis) Better separation of DEVREL_DEPS from POISON_ENV
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 30_before_script.bash
CommitLineData
b58ecb01 1#!/bin/bash
2
afeb40d2 3# this file is executed in a subshell - set up the common stuff
4source maint/travis-ci_scripts/common.bash
b58ecb01 5
afeb40d2 6if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then exit 0 ; fi
6d74b82c 7
27cb13e3 8# The prereq-install stage will not work with both POISON and DEVREL
9# DEVREL wins
10if [[ "$DEVREL_DEPS" = "true" ]] ; then
11 export POISON_ENV=""
12fi
13
afeb40d2 14# FIXME - this is a kludge in place of proper MDV testing. For the time
15# being simply use the minimum versions of our DBI/DBDstack, to avoid
16# fuckups like 0.08260 (went unnoticed for 5 months)
27cb13e3 17if [[ "$POISON_ENV" = "true" ]] ; then
4f6eb3d8 18
4f6eb3d8 19 # use url-spec for DBI due to https://github.com/miyagawa/cpanminus/issues/328
e52712a8 20 if [[ "$CLEANTEST" != "true" ]] || perl -M5.013003 -e1 &>/dev/null ; then
21 # the fulltest may re-upgrade DBI, be conservative only on cleantests
4f6eb3d8 22 # earlier DBI will not compile without PERL_POLLUTE which was gone in 5.14
23 parallel_installdeps_notest T/TI/TIMB/DBI-1.614.tar.gz
24 else
25 parallel_installdeps_notest T/TI/TIMB/DBI-1.57.tar.gz
26 fi
27
28 # Test both minimum DBD::SQLite and minimum BigInt SQLite
e52712a8 29 # reverse the logic from above for this (low on full, higher on clean)
4f6eb3d8 30 if [[ "$CLEANTEST" = "true" ]]; then
31 parallel_installdeps_notest DBD::SQLite@1.37
32 else
33 parallel_installdeps_notest DBD::SQLite@1.29
34 fi
35
992a24f6 36fi
37
b58ecb01 38if [[ "$CLEANTEST" = "true" ]]; then
39 # get the last inc/ off cpan - we will get rid of MI
40 # soon enough, but till then this will do
41 # the point is to have a *really* clean perl (the ones
42 # we build are guaranteed to be clean, without side
43 # effects from travis preinstalls)
44
45 # trick cpanm into executing true as shell - we just need the find+unpack
6d74b82c 46 [[ -d ~/.cpanm/latest-build/DBIx-Class-*/inc ]] || run_or_err "Downloading latest stable DBIC inc/ from CPAN" \
b58ecb01 47 "SHELL=/bin/true cpanm --look DBIx::Class"
48
49 mv ~/.cpanm/latest-build/DBIx-Class-*/inc .
50
b58ecb01 51 # The first CPAN which is somewhat sane is around 1.94_56 (perl 5.12)
52 # The problem is that the first sane version also brings a *lot* of
53 # deps with it, notably things like YAML and HTTP::Tiny
54 # The goal of CLEANTEST is to have as little extra stuff installed as
55 # possible, mainly to catch "but X is perl core" mistakes
56 # So instead we still use our stock (possibly old) CPAN, and add some
57 # handholding
b58ecb01 58
e6b373aa 59 if [[ "$DEVREL_DEPS" == "true" ]] ; then
082f208f 60 # We are not "quite ready" for SQLA 1.99, do not consider it
647da28e 61 #
082f208f 62 installdeps 'SQL::Abstract~<1.99'
dd5de10a 63
21b3c791 64 else
65
66 if ! CPAN_is_sane ; then
67 # no configure_requires - we will need the usual suspects anyway
68 # without pre-installing these in one pass things like extract_prereqs won't work
69 installdeps ExtUtils::MakeMaker ExtUtils::CBuilder Module::Build
70 fi
71
72 # FIXME - temporary until 1.46 comes out / RT#99747 is fixed
73 # insufficient testing of 5.8.3, ned older DBD::SQlite, ribasushi--
74 if ! perl -M5.008004 -e 1 &>/dev/null ; then
75 installdeps DBI I/IS/ISHIGAKI/DBD-SQLite-1.42.tar.gz
76 fi
dd5de10a 77
e6b373aa 78 fi
79
b58ecb01 80else
81 # we will be running all dbic tests - preinstall lots of stuff, run basic tests
b58ecb01 82
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
e58d384f 91 parallel_installdeps_notest Module::Build
cf836d21 92 parallel_installdeps_notest File::Spec Data::Dumper Module::Runtime
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
4f6eb3d8 96 parallel_installdeps_notest YAML LWP Class::Trigger JSON::XS DateTime::Format::Builder Class::Accessor::Grouped Package::Variant
07292953 97 parallel_installdeps_notest SQL::Abstract Moose Module::Install JSON SQL::Translator File::Which
b58ecb01 98
e52712a8 99 # the official version is very much outdated and does not compile on 5.14+
100 # use this rather updated source tree (needs to go to PAUSE):
101 # https://github.com/pilcrow/perl-dbd-interbase
2b580420 102 if [[ -n "$DBICTEST_FIREBIRD_INTERBASE_DSN" ]] ; then
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
5af54265 114
b58ecb01 115 # we may need to prepend some stuff to that list
116 HARD_DEPS="$(echo $(make listdeps))"
117
e6b373aa 118##### TEMPORARY WORKAROUNDS needed in case we will be using CPAN.pm
119 if [[ "$DEVREL_DEPS" != "true" ]] && ! CPAN_is_sane ; then
f207111d 120
579472df 121 # DBD::SQLite reasonably wants DBI at config time
4f6eb3d8 122 perl -MDBI -e1 &>/dev/null || HARD_DEPS="DBI $HARD_DEPS"
579472df 123
2d64c401 124 # this is a fucked CPAN - won't understand configure_requires of
125 # various pieces we may run into
126 # FIXME - need to get these off metacpan or something instead
127 HARD_DEPS="ExtUtils::Depends B::Hooks::OP::Check $HARD_DEPS"
128
f207111d 129 # FIXME
130 # parent is temporary due to Carp https://rt.cpan.org/Ticket/Display.html?id=88494
131 HARD_DEPS="parent $HARD_DEPS"
132
133 if CPAN_supports_BUILDPL ; then
134 # We will invoke a posibly MBT based BUILD-file, but we do not support
135 # configure requires. So we not only need to install MBT but its prereqs
136 # FIXME This is madness
137 HARD_DEPS="$(extract_prereqs Module::Build::Tiny) Module::Build::Tiny $HARD_DEPS"
138 else
139 # FIXME
140 # work around Params::Validate not having a Makefile.PL so really old
141 # toolchains can not figure out what the prereqs are ;(
142 # Need to do more research before filing a bug requesting Makefile inclusion
143 HARD_DEPS="$(extract_prereqs Params::Validate) $HARD_DEPS"
144 fi
145 fi
146##### END TEMPORARY WORKAROUNDS
4e338f1b 147
579472df 148 installdeps $HARD_DEPS
b58ecb01 149
f207111d 150else
5af54265 151
bd15e62e 152 parallel_installdeps_notest "$(make listdeps)"
5af54265 153
b58ecb01 154fi
155
f207111d 156echo_err "$(tstamp) Dependency installation finished"
b58ecb01 157# this will display list of available versions
158perl Makefile.PL
159
160# make sure we got everything we need
161if [[ -n "$(make listdeps)" ]] ; then
162 echo_err "$(tstamp) Not all deps installed - something went wrong :("
163 sleep 1 # without this the echo below confuses the console listener >.<
579472df 164 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 165 sleep 3 # without this the above echo confuses the console listener >.<
166 make listdeps
167 exit 1
168fi
169
4f6eb3d8 170# check that our MDV somewhat works
171if [[ "$POISON_ENV" = "true" ]] && ( perl -MDBD::SQLite\ 1.38 -e1 || perl -MDBI\ 1.615 -e1 ) &>/dev/null ; then
172 echo_err "Something went wrong - higher versions of DBI and/or DBD::SQLite than we expected"
173 exit 1
174fi
175
176
b58ecb01 177# announce what are we running
178echo_err "
179===================== DEPENDENCY CONFIGURATION COMPLETE =====================
180$(tstamp) Configuration phase seems to have taken $(date -ud "@$SECONDS" '+%H:%M:%S') (@$SECONDS)
181
5c0b7a18 182$(ci_vm_state_text)"