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