Only smoke blead-pan on allowed-to-fail runs
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 20_install.bash
CommitLineData
b58ecb01 1#!/bin/bash
2
3source maint/travis-ci_scripts/common.bash
4if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
b2435630 6CPAN_MIRROR=$(echo "$PERL_CPANM_OPT" | grep -oP -- '--mirror\s+\S+' | head -n 1 | cut -d ' ' -f 2)
7if ! [[ "$CPAN_MIRROR" =~ "http://" ]] ; then
b58ecb01 8 echo_err "Unable to extract primary cpan mirror from PERL_CPANM_OPT - something is wrong"
9 echo_err "PERL_CPANM_OPT: $PERL_CPANM_OPT"
b2435630 10 CPAN_MIRROR="http://cpan.develooper.com/"
d71417ff 11 PERL_CPANM_OPT="$PERL_CPANM_OPT --mirror $CPAN_MIRROR"
b2435630 12 echo_err "Using $CPAN_MIRROR for the time being"
b58ecb01 13fi
14
b2435630 15export PERL_MM_USE_DEFAULT=1 PERL_MM_NONINTERACTIVE=1 PERL_AUTOINSTALL_PREFER_CPAN=1 PERLBREW_CPAN_MIRROR="$CPAN_MIRROR"
b58ecb01 16
2f51deb1 17# try CPAN's latest offering if requested
18if [[ "$DEVREL_DEPS" == "true" ]] ; then
19
20 if [[ "$CLEANTEST" == "true" ]] ; then
21 echo_err "DEVREL_DEPS combined with CLEANTEST makes no sense - it is only possible with cpanm"
22 exit 1
23 fi
24
25 PERL_CPANM_OPT="$PERL_CPANM_OPT --dev"
26
27 # FIXME work around https://github.com/miyagawa/cpanminus/issues/308
28 TEST_BUILDER_BETA_CPAN_TARBALL="M/MS/MSCHWERN/Test-Simple-1.005000_006.tar.gz"
29fi
30
b58ecb01 31# Fixup CPANM_OPT to behave more like a traditional cpan client
b2435630 32export PERL_CPANM_OPT="--verbose --no-interactive $( echo $PERL_CPANM_OPT | sed 's/--skip-satisfied//' )"
b58ecb01 33
34if [[ -n "$BREWVER" ]] ; then
35 run_or_err "Compiling/installing Perl $BREWVER (without testing, may take up to 5 minutes)" \
03d379e5 36 "perlbrew install --as $BREWVER --notest --verbose $BREWOPTS -j 2 $BREWVER"
b58ecb01 37
d2b1fee9 38 # can not do 'perlbrew uss' in the run_or_err subshell above, or a $()
39 # furthermore `perlbrew use` returns 0 regardless of whether the perl is
40 # found (won't be there unless compilation suceeded, wich *ALSO* returns 0)
41 perlbrew use $BREWVER
42
43 if [[ "$( perlbrew use | grep -oP '(?<=Currently using ).+' )" != "$BREWVER" ]] ; then
44 echo_err "Unable to switch to $BREWVER - compilation failed...?"
45 echo_err "$LASTOUT"
46 exit 1
47 fi
48
b58ecb01 49fi
50
51# configure CPAN.pm - older versions go into an endless loop
52# when trying to autoconf themselves
53CPAN_CFG_SCRIPT="
54 require CPAN;
55 require CPAN::FirstTime;
56 *CPAN::FirstTime::conf_sites = sub {};
57 CPAN::Config->load;
b2435630 58 \$CPAN::Config->{urllist} = [qw{ $CPAN_MIRROR }];
b58ecb01 59 \$CPAN::Config->{halt_on_failure} = 1;
60 CPAN::Config->commit;
61"
62run_or_err "Configuring CPAN.pm" "perl -e '$CPAN_CFG_SCRIPT'"