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