(travis) Port all travis changes since 0.08270
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 20_install.bash
CommitLineData
b58ecb01 1#!/bin/bash
2
b58ecb01 3if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
4
83c94794 5# we need a mirror that both has the standard index and a backpan version rolled
6# into one, due to MDV testing
7export CPAN_MIRROR="http://cpan.metacpan.org/"
8
9PERL_CPANM_OPT="$PERL_CPANM_OPT --mirror $CPAN_MIRROR"
b58ecb01 10
83c94794 11# do not set PERLBREW_CPAN_MIRROR - not all backpan-like mirrors have the perl tarballs
12export PERL_MM_USE_DEFAULT=1 PERL_MM_NONINTERACTIVE=1 PERL_AUTOINSTALL_PREFER_CPAN=1 HARNESS_TIMER=1 MAKEFLAGS="-j$VCPU_USE"
b58ecb01 13
2f51deb1 14# try CPAN's latest offering if requested
15if [[ "$DEVREL_DEPS" == "true" ]] ; then
16
2f51deb1 17 PERL_CPANM_OPT="$PERL_CPANM_OPT --dev"
18
2f51deb1 19fi
20
b58ecb01 21# Fixup CPANM_OPT to behave more like a traditional cpan client
a1f6d93c 22export PERL_CPANM_OPT="--verbose --no-interactive --no-man-pages $( echo $PERL_CPANM_OPT | sed 's/--skip-satisfied//' )"
b58ecb01 23
24if [[ -n "$BREWVER" ]] ; then
83c94794 25
4bbabf15 26 # since perl 5.14 a perl can safely be built concurrently with -j$large
27 # (according to brute force testing and my power bill)
83c94794 28 if [[ "$BREWVER" =~ [A-Za-z] ]] || perl -Mversion -e "exit !!(version->new(q($BREWVER)) < 5.014)" ; then
29 perlbrew_jopt="$VCPU_USE"
30 fi
31
32 BREWSRC="$BREWVER"
33
34 if is_cperl; then
35 if [[ "$BREWVER" == "cperl-master" ]] ; then
36 git clone --single-branch --depth=1 --branch=master https://github.com/perl11/cperl /tmp/cperl-master
37 BREWSRC="/tmp/cperl-master"
38 else
39 # FFS perlbrew ( see http://wollmers-perl.blogspot.de/2015/10/install-cperl-with-perlbrew.html )
40 wget -qO- https://github.com/perl11/cperl/archive/$BREWVER.tar.gz > /tmp/cperl-$BREWVER.tar.gz
41 BREWSRC="/tmp/cperl-$BREWVER.tar.gz"
42 fi
43 elif [[ "$BREWVER" == "schmorp_stableperl" ]] ; then
44 BREWSRC="http://stableperl.schmorp.de/dist/stableperl-5.22.0-1.001.tar.gz"
4bbabf15 45 fi
46
47 run_or_err "Compiling/installing Perl $BREWVER (without testing, using ${perlbrew_jopt:-1} threads, may take up to 5 minutes)" \
83c94794 48 "perlbrew install --as $BREWVER --notest --noman --verbose $BREWOPTS -j${perlbrew_jopt:-1} $BREWSRC"
49
50 # FIXME work around https://github.com/perl11/cperl/issues/144
51 # (still affecting 5.22.3)
52 if is_cperl && ! [[ -f ~/perl5/perlbrew/perls/$BREWVER/bin/perl ]] ; then
53 ln -s ~/perl5/perlbrew/perls/$BREWVER/bin/cperl ~/perl5/perlbrew/perls/$BREWVER/bin/perl
54 fi
b58ecb01 55
83c94794 56 # can not do 'perlbrew use' in the run_or_err subshell above, or a $()
57 # furthermore some versions of `perlbrew use` return 0 regardless of whether
58 # the perl is found (won't be there unless compilation suceeded, wich *ALSO* returns 0)
59 perlbrew use $BREWVER || /bin/true
d2b1fee9 60
61 if [[ "$( perlbrew use | grep -oP '(?<=Currently using ).+' )" != "$BREWVER" ]] ; then
62 echo_err "Unable to switch to $BREWVER - compilation failed...?"
63 echo_err "$LASTOUT"
64 exit 1
65 fi
66
2c754d14 67# no brewver - this means a travis perl, which means we want to clean up
68# the presently installed libs
2c754d14 69elif [[ "$CLEANTEST" == "true" ]] && [[ "$POISON_ENV" != "true" ]] ; then
83c94794 70 purge_sitelib
71fi
2c754d14 72
83c94794 73if [[ "$POISON_ENV" = "true" ]] ; then
74 # create a perlbrew-specific local lib
75 perlbrew lib create travis-local
76 perlbrew use "$( perlbrew use | grep -oP '(?<=Currently using ).+' )@travis-local"
77 echo_err "POISON_ENV active - adding a local lib: $(perlbrew use)"
b58ecb01 78fi
79
80# configure CPAN.pm - older versions go into an endless loop
81# when trying to autoconf themselves
82CPAN_CFG_SCRIPT="
83 require CPAN;
84 require CPAN::FirstTime;
85 *CPAN::FirstTime::conf_sites = sub {};
86 CPAN::Config->load;
b2435630 87 \$CPAN::Config->{urllist} = [qw{ $CPAN_MIRROR }];
83c94794 88 \$CPAN::Config->{halt_on_failure} = $( is_cperl && echo -n 0 || echo -n 1 );
b58ecb01 89 CPAN::Config->commit;
90"
91run_or_err "Configuring CPAN.pm" "perl -e '$CPAN_CFG_SCRIPT'"
83c94794 92
93
94# These envvars are always set, more *maybe* below
95export DBIC_SHUFFLE_UNORDERED_RESULTSETS=1
96
97# bogus nonexisting DBI_*
98export DBI_DSN="dbi:ODBC:server=NonexistentServerAddress"
99export DBI_DRIVER="ADO"
100
101# some people do in fact set this - boggle!!!
102# it of course won't work before 5.8.4
103if perl -M5.008004 -e 1 &>/dev/null ; then
104 export PERL_STRICTURES_EXTRA=1
105fi
106
107
108# poison the environment
109if [[ "$POISON_ENV" = "true" ]] ; then
110
111 toggle_vars=( MVDT )
112
113 [[ "$CLEANTEST" == "true" ]] && toggle_vars+=( BREAK_CC )
114
115 for var in "${toggle_vars[@]}" ; do
116 if [[ -z "${!var}" ]] ; then
117 export $var=true
118 echo "POISON_ENV: setting $var to 'true'"
119 fi
120 done
121
122 # look through lib, find all mentioned DBIC* ENVvars and set them to true and see if anything explodes
123 toggle_booleans=( $( grep -ohP '\bDBIC_[0-9_A-Z]+' -r lib/ --exclude-dir Optional | sort -u | grep -vP '^(DBIC_TRACE(_PROFILE)?|DBIC_.+_DEBUG)$' ) )
124
125 # some extra pollutants
126 toggle_booleans+=( \
127 DBICTEST_ASSERT_NO_SPURIOUS_EXCEPTION_ACTION \
128 DBICTEST_SQLITE_USE_FILE \
129 DBICTEST_RUN_ALL_TESTS \
130 DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER \
131 )
132
133 # if we have Moose - try to run everything under replicated
134 # FIXME - when switching to Moo kill this
135 if [[ "$CLEANTEST" != "true" ]] && perl -M5.008003 -e 1 &>/dev/null ; then
136 toggle_booleans+=( DBICTEST_VIA_REPLICATED )
137 fi
138
139 for var in "${toggle_booleans[@]}"
140 do
141 if [[ -z "${!var}" ]] ; then
142 export $var=1
143 echo "POISON_ENV: setting $var to 1"
144 fi
145 done
146
147
148### emulate a local::lib-like env
149
150 # trick cpanm into executing true as shell - we just need the find+unpack
151 run_or_err "Downloading latest stable DBIC from CPAN" \
152 "SHELL=/bin/true cpanm --look DBIx::Class"
153
154 # move it somewhere as following cpanm will clobber it
155 run_or_err "Moving latest stable DBIC from CPAN to /tmp" "mv ~/.cpanm/latest-build/DBIx-Class-*/lib /tmp/stable_dbic_lib"
156
157 export PERL5LIB="/tmp/stable_dbic_lib:$PERL5LIB"
158
159 # perldoc -l <mod> searches $(pwd)/lib in addition to PERL5LIB etc, hence the cd /
160 echo_err "Latest stable DBIC (without deps) locatable via \$PERL5LIB at $(cd / && perldoc -l DBIx::Class)"
161fi
162
163if [[ "$CLEANTEST" != "true" ]] ; then
164 # using SQLT if will be available
165 # not doing later because we will be running in a subshell
166 export DBICTEST_SQLT_DEPLOY=1
167
168fi
169
170# FIXME - work around https://github.com/miyagawa/cpanminus/issues/462
171# seriously...
172perl -p -i -e 's/\blocal\$self->\{notest\}=1;//' $(which cpanm)