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