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