Fix more taint.t failures under local::lib
[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
179566f3 8# The DEVREL_DEPS prereq-install stage won't mix with MVDT
27cb13e3 9# DEVREL wins
179566f3 10if [[ "$DEVREL_DEPS" == "true" ]] ; then
11 export MVDT=""
27cb13e3 12fi
13
64d48e19 14# Need a shitton of patches to run on cperl (luckily all provided)
15# Also need to have YAML in place, otherwise the distroprefs are not readable
d699fb20 16# (cperl 5.22.2 comes with YAML already)
64d48e19 17if is_cperl ; then
18
19 run_or_err "Downloading and installing cperl distroprefs" '
20 wget -qO- https://github.com/rurban/distroprefs/archive/master.tar.gz |\
21 tar -C $HOME/.cpan --strip-components 1 -zx distroprefs-master/prefs distroprefs-master/sources
22 '
23
d699fb20 24 perl -M5.022002 -e1 &>/dev/null || installdeps YAML
64d48e19 25
26fi
27
9d0785d5 28# FIXME - this is a kludge in place of proper MVDT testing. For the time
afeb40d2 29# being simply use the minimum versions of our DBI/DBDstack, to avoid
30# fuckups like 0.08260 (went unnoticed for 5 months)
179566f3 31if [[ "$MVDT" == "true" ]] ; then
4f6eb3d8 32
4f6eb3d8 33 # use url-spec for DBI due to https://github.com/miyagawa/cpanminus/issues/328
e52712a8 34 if [[ "$CLEANTEST" != "true" ]] || perl -M5.013003 -e1 &>/dev/null ; then
35 # the fulltest may re-upgrade DBI, be conservative only on cleantests
4f6eb3d8 36 # earlier DBI will not compile without PERL_POLLUTE which was gone in 5.14
37 parallel_installdeps_notest T/TI/TIMB/DBI-1.614.tar.gz
2ff02982 38
39 # FIXME work around DBD::DB2 being silly: https://rt.cpan.org/Ticket/Display.html?id=101659
40 if [[ -n "$DBICTEST_DB2_DSN" ]] ; then
41 echo_err "Installing same DBI version into the main perl (above the current local::lib)"
42 $SHELL -lic "perlbrew use $( perlbrew use | grep -oP '(?<=Currently using )[^@]+' ) && parallel_installdeps_notest T/TI/TIMB/DBI-1.614.tar.gz"
43 fi
4f6eb3d8 44 else
45 parallel_installdeps_notest T/TI/TIMB/DBI-1.57.tar.gz
2ff02982 46
47 # FIXME work around DBD::DB2 being silly: https://rt.cpan.org/Ticket/Display.html?id=101659
48 if [[ -n "$DBICTEST_DB2_DSN" ]] ; then
49 echo_err "Installing same DBI version into the main perl (above the current local::lib)"
50 $SHELL -lic "perlbrew use $( perlbrew use | grep -oP '(?<=Currently using )[^@]+' ) && parallel_installdeps_notest T/TI/TIMB/DBI-1.57.tar.gz"
51 fi
4f6eb3d8 52 fi
53
54 # Test both minimum DBD::SQLite and minimum BigInt SQLite
e52712a8 55 # reverse the logic from above for this (low on full, higher on clean)
4f6eb3d8 56 if [[ "$CLEANTEST" = "true" ]]; then
57 parallel_installdeps_notest DBD::SQLite@1.37
58 else
59 parallel_installdeps_notest DBD::SQLite@1.29
60 fi
179566f3 61fi
4f6eb3d8 62
179566f3 63#
64# try minimal fully tested installs *without* a compiler (with some exceptions of course)
65if [[ "$BREAK_CC" == "true" ]] ; then
e9d552de 66
179566f3 67 [[ "$CLEANTEST" != "true" ]] && echo_err "Breaking the compiler without CLEANTEST makes no sense" && exit 1
e9d552de 68
179566f3 69 # FIXME - working around RT#74707, https://metacpan.org/source/DOY/Package-Stash-0.37/Makefile.PL#L112-122
179566f3 70 #
71 # DEVREL_DEPS means our installer is cpanm, which will respect failures
72 # and the like, so stuff soft-failing (failed deps that are not in fact
73 # needed) will not fly. Add *EVEN MORE* stuff that needs a compiler
74 #
75 # FIXME - the PathTools 3.47 is to work around https://rt.cpan.org/Ticket/Display.html?id=107392
76 #
77 installdeps Sub::Name Clone Package::Stash::XS \
179566f3 78 $( [[ "$DEVREL_DEPS" == "true" ]] && ( perl -MFile::Spec\ 3.13 -e1 &>/dev/null || echo "S/SM/SMUELLER/PathTools-3.47.tar.gz" ) ) \
79 $( perl -MDBI -e1 &>/dev/null || echo "DBI" ) \
80 $( perl -MDBD::SQLite -e1 &>/dev/null || echo "DBD::SQLite" )
e5b2f13c 81
179566f3 82 mkdir -p "$HOME/bin" # this is already in $PATH, just doesn't exist
83 run_or_err "Linking ~/bin/cc to /bin/false - thus essentially BREAKING the C compiler" \
84 "ln -s /bin/false $HOME/bin/cc"
e5b2f13c 85
9d0785d5 86 # FIXME: working around RT#113682, and some other unfiled bugs
87 installdeps Module::Build Devel::GlobalDestruction Class::Accessor::Grouped
179566f3 88
89 run_or_err "Linking ~/bin/cc to /bin/true - BREAKING the C compiler even harder" \
90 "ln -fs /bin/true $HOME/bin/cc"
992a24f6 91fi
92
b58ecb01 93if [[ "$CLEANTEST" = "true" ]]; then
94 # get the last inc/ off cpan - we will get rid of MI
95 # soon enough, but till then this will do
96 # the point is to have a *really* clean perl (the ones
97 # we build are guaranteed to be clean, without side
98 # effects from travis preinstalls)
99
d699fb20 100 # work around https://github.com/perl11/cperl/issues/145 (no cpanm)
101 if is_cperl ; then
b58ecb01 102
d699fb20 103 wget -qO- $( wget -qO- http://cpanmetadb.plackperl.org/v1.0/package/DBIx::Class | grep distfile | sed "s|distfile:\s*|$CPAN_MIRROR/authors/id/|" ) \
104 | tar -zx --strip-components 1 --wildcards '*/inc'
105
106 # FIXME - kill this when M::I is gone
107 # Argh -DFORTIFY_INC!!!
108 export PERL5LIB="$PERL5LIB:."
109
110 else
111 # trick cpanm into executing true as shell - we just need the find+unpack
112 [[ -d ~/.cpanm/latest-build/DBIx-Class-*/inc ]] || run_or_err "Downloading latest stable DBIC inc/ from CPAN" \
113 "SHELL=/bin/true cpanm --look DBIx::Class"
114
115 mv ~/.cpanm/latest-build/DBIx-Class-*/inc .
116 fi
b58ecb01 117
b58ecb01 118 # The first CPAN which is somewhat sane is around 1.94_56 (perl 5.12)
119 # The problem is that the first sane version also brings a *lot* of
120 # deps with it, notably things like YAML and HTTP::Tiny
121 # The goal of CLEANTEST is to have as little extra stuff installed as
122 # possible, mainly to catch "but X is perl core" mistakes
123 # So instead we still use our stock (possibly old) CPAN, and add some
124 # handholding
b58ecb01 125
dd94f6ef 126 if [[ "$DEVREL_DEPS" = "true" ]] ; then
cae2fcd7 127 # nothing for now
128 /bin/true
dd94f6ef 129 elif ! CPAN_is_sane ; then
cb4b23e9 130 # no configure_requires - we will need the usual suspects anyway
a872a9d7 131 # without pre-installing these in one pass things won't yet work
90e09088 132 installdeps Module::Build
e6b373aa 133 fi
134
b58ecb01 135else
136 # we will be running all dbic tests - preinstall lots of stuff, run basic tests
b58ecb01 137
138 # do the preinstall in several passes to minimize amount of cross-deps installing
139 # multiple times, and to avoid module re-architecture breaking another install
e48635f7 140 # (e.g. once Carp is upgraded there's no more Carp::Heavy)
b58ecb01 141 #
b58ecb01 142 parallel_installdeps_notest Carp
e58d384f 143 parallel_installdeps_notest Module::Build
e48635f7 144 parallel_installdeps_notest Test::Exception Encode::Locale Test::Fatal Module::Runtime
e1ab2f7a 145 parallel_installdeps_notest Test::Warn B::Hooks::EndOfScope Test::Differences HTTP::Status
f5616614 146 parallel_installdeps_notest Test::Pod::Coverage Test::EOL Devel::GlobalDestruction Sub::Name MRO::Compat Class::XSAccessor URI::Escape HTML::Entities
4841171c 147 parallel_installdeps_notest YAML LWP Class::Trigger DateTime::Format::Builder Class::Accessor::Grouped Package::Variant
4fb8d74c 148 parallel_installdeps_notest SQL::Abstract Moose Module::Install@1.15 JSON SQL::Translator File::Which Class::DBI::Plugin git://github.com/dbsrgits/perl-pperl.git
b58ecb01 149
e52712a8 150 # the official version is very much outdated and does not compile on 5.14+
151 # use this rather updated source tree (needs to go to PAUSE):
152 # https://github.com/pilcrow/perl-dbd-interbase
2b580420 153 if [[ -n "$DBICTEST_FIREBIRD_INTERBASE_DSN" ]] ; then
8be58dca 154 parallel_installdeps_notest git://github.com/dbsrgits/perl-dbd-interbase.git
b58ecb01 155 fi
156
4fb8d74c 157 # SCGI does not install under < 5.8.8 perls nor under parallel make
158 # FIXME: The 5.8.8 thing is likely fixable, something to do with
159 # #define speedy_new(s,n,t) Newx(s,n,t)
160 if perl -M5.008008 -e 1 &>/dev/null ; then
161 MAKEFLAGS="" bash -c "parallel_installdeps_notest git://github.com/dbsrgits/cgi-speedycgi.git"
162 fi
b58ecb01 163fi
164
b58ecb01 165
166# install (remaining) dependencies, sometimes with a gentle push
167if [[ "$CLEANTEST" = "true" ]]; then
5af54265 168
7b87b77c 169 run_or_err "Configure on current branch" "perl Makefile.PL"
170
b33e214d 171 # we are doing a devrel pass - try to upgrade *everything* (we will be using cpanm so safe-ish)
172 if [[ "$DEVREL_DEPS" == "true" ]] ; then
173
a966127d 174 HARD_DEPS="$(make listalldeps | sort -R)"
b33e214d 175
176 else
177
a966127d 178 HARD_DEPS="$(make listdeps | sort -R)"
b33e214d 179
180##### TEMPORARY WORKAROUNDS needed in case we will be using a fucked CPAN.pm
181 if ! CPAN_is_sane ; then
182
183 # DBD::SQLite reasonably wants DBI at config time
184 perl -MDBI -e1 &>/dev/null || HARD_DEPS="DBI $HARD_DEPS"
185
f207111d 186 fi
b33e214d 187
f207111d 188##### END TEMPORARY WORKAROUNDS
b33e214d 189 fi
4e338f1b 190
579472df 191 installdeps $HARD_DEPS
b58ecb01 192
7b87b77c 193 run_or_err "Re-configure" "perl Makefile.PL"
194
f207111d 195else
5af54265 196
7b87b77c 197 run_or_err "Configure on current branch with --with-optdeps" "perl Makefile.PL --with-optdeps"
198
07a243ad 199 # FIXME - evil evil work around for https://github.com/Manwar/Test-Strict/issues/17
200 if perl -M5.025 -e1 &>/dev/null; then
201 mkdir -p "$( perl -MConfig -e 'print $Config{sitelib}' )/Devel"
202 cat <<MyDevelCover > "$( perl -MConfig -e 'print $Config{sitelib}' )/Devel/Cover.pm"
203package Devel::Cover;
204our \$VERSION = 0.43;
2051;
206MyDevelCover
207 fi
208
81698df5 209 # if we are smoking devrels - make sure we upgrade everything we know about
210 if [[ "$DEVREL_DEPS" == "true" ]] ; then
211 parallel_installdeps_notest "$(make listalldeps | sort -R)"
212 else
213 parallel_installdeps_notest "$(make listdeps | sort -R)"
214 fi
5af54265 215
7b87b77c 216 run_or_err "Re-configure with --with-optdeps" "perl Makefile.PL --with-optdeps"
b58ecb01 217fi
218
f207111d 219echo_err "$(tstamp) Dependency installation finished"
55c6fb91 220
b58ecb01 221# make sure we got everything we need
222if [[ -n "$(make listdeps)" ]] ; then
223 echo_err "$(tstamp) Not all deps installed - something went wrong :("
224 sleep 1 # without this the echo below confuses the console listener >.<
579472df 225 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 226 sleep 3 # without this the above echo confuses the console listener >.<
227 make listdeps
228 exit 1
229fi
230
179566f3 231# check that our MVDT somewhat works
232if [[ "$MVDT" == "true" ]] && ( perl -MDBD::SQLite\ 1.38 -e1 || perl -MDBI\ 1.615 -e1 ) &>/dev/null ; then
4f6eb3d8 233 echo_err "Something went wrong - higher versions of DBI and/or DBD::SQLite than we expected"
234 exit 1
235fi
236
113087b7 237if [[ "$CLEANTEST" = "true" ]] && perl -MModule::Build::Tiny -e1 &>/dev/null ; then
238 echo_err "Module::Build::Tiny pulled in during the basic depchain install - this must not happen"
239 exit 1
240fi
4f6eb3d8 241
b58ecb01 242# announce what are we running
243echo_err "
244===================== DEPENDENCY CONFIGURATION COMPLETE =====================
245$(tstamp) Configuration phase seems to have taken $(date -ud "@$SECONDS" '+%H:%M:%S') (@$SECONDS)
246
5c0b7a18 247$(ci_vm_state_text)"