6010f76f06963151c7268c097820270d6f7f863e
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 20_install.bash
1 #!/bin/bash
2
3 source maint/travis-ci_scripts/common.bash
4 if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
6 CPAN_MIRROR=$(echo "$PERL_CPANM_OPT" | grep -oP -- '--mirror\s+\S+' | head -n 1 | cut -d ' ' -f 2)
7 if ! [[ "$CPAN_MIRROR" =~ "http://" ]] ; then
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"
10   CPAN_MIRROR="http://cpan.develooper.com/"
11   echo_err "Using $CPAN_MIRROR for the time being"
12 fi
13
14 export PERL_MM_USE_DEFAULT=1 PERL_MM_NONINTERACTIVE=1 PERL_AUTOINSTALL_PREFER_CPAN=1 PERLBREW_CPAN_MIRROR="$CPAN_MIRROR"
15
16 # Fixup CPANM_OPT to behave more like a traditional cpan client
17 export PERL_CPANM_OPT="--verbose --no-interactive $( echo $PERL_CPANM_OPT | sed 's/--skip-satisfied//' )"
18
19 if [[ -n "$BREWVER" ]] ; then
20   run_or_err "Compiling/installing Perl $BREWVER (without testing, may take up to 5 minutes)" \
21     "perlbrew install --as $BREWVER --notest --verbose $BREWOPTS -j 2  $BREWVER"
22
23   # can not do 'perlbrew uss' in the run_or_err subshell above, or a $()
24   # furthermore `perlbrew use` returns 0 regardless of whether the perl is
25   # found (won't be there unless compilation suceeded, wich *ALSO* returns 0)
26   perlbrew use $BREWVER
27
28   if [[ "$( perlbrew use | grep -oP '(?<=Currently using ).+' )" != "$BREWVER" ]] ; then
29     echo_err "Unable to switch to $BREWVER - compilation failed...?"
30     echo_err "$LASTOUT"
31     exit 1
32   fi
33
34 fi
35
36 # configure CPAN.pm - older versions go into an endless loop
37 # when trying to autoconf themselves
38 CPAN_CFG_SCRIPT="
39   require CPAN;
40   require CPAN::FirstTime;
41   *CPAN::FirstTime::conf_sites = sub {};
42   CPAN::Config->load;
43   \$CPAN::Config->{urllist} = [qw{ $CPAN_MIRROR }];
44   \$CPAN::Config->{halt_on_failure} = 1;
45   CPAN::Config->commit;
46 "
47 run_or_err "Configuring CPAN.pm" "perl -e '$CPAN_CFG_SCRIPT'"