Ignore stderr in extract_prereqs - only rely on $?
[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/"
11 echo_err "Using $CPAN_MIRROR for the time being"
b58ecb01 12fi
13
b2435630 14export PERL_MM_USE_DEFAULT=1 PERL_MM_NONINTERACTIVE=1 PERL_AUTOINSTALL_PREFER_CPAN=1 PERLBREW_CPAN_MIRROR="$CPAN_MIRROR"
b58ecb01 15
16# Fixup CPANM_OPT to behave more like a traditional cpan client
b2435630 17export PERL_CPANM_OPT="--verbose --no-interactive $( echo $PERL_CPANM_OPT | sed 's/--skip-satisfied//' )"
b58ecb01 18
19if [[ -n "$BREWVER" ]] ; then
20 run_or_err "Compiling/installing Perl $BREWVER (without testing, may take up to 5 minutes)" \
03d379e5 21 "perlbrew install --as $BREWVER --notest --verbose $BREWOPTS -j 2 $BREWVER"
b58ecb01 22
23 # can not do 'perlbrew uss' in the run_or_err subshell above
24 perlbrew use $BREWVER || \
25 ( echo_err -e "Unable to switch to $BREWVER - compillation failed?\n$LASTOUT"; exit 1 )
26fi
27
28# configure CPAN.pm - older versions go into an endless loop
29# when trying to autoconf themselves
30CPAN_CFG_SCRIPT="
31 require CPAN;
32 require CPAN::FirstTime;
33 *CPAN::FirstTime::conf_sites = sub {};
34 CPAN::Config->load;
b2435630 35 \$CPAN::Config->{urllist} = [qw{ $CPAN_MIRROR }];
b58ecb01 36 \$CPAN::Config->{halt_on_failure} = 1;
37 CPAN::Config->commit;
38"
39run_or_err "Configuring CPAN.pm" "perl -e '$CPAN_CFG_SCRIPT'"