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