Apparently this is more stable historically... boggle
[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="https://cpan.metacpan.org/"
11   PERL_CPANM_OPT="$PERL_CPANM_OPT --mirror $CPAN_MIRROR"
12   echo_err "Using $CPAN_MIRROR for the time being"
13 fi
14
15 export PERL_MM_USE_DEFAULT=1 PERL_MM_NONINTERACTIVE=1 PERL_AUTOINSTALL_PREFER_CPAN=1 PERLBREW_CPAN_MIRROR="$CPAN_MIRROR" HARNESS_TIMER=1 MAKEFLAGS="-j$NUMTHREADS"
16
17 # try CPAN's latest offering if requested
18 if [[ "$DEVREL_DEPS" == "true" ]] ; then
19
20   PERL_CPANM_OPT="$PERL_CPANM_OPT --dev"
21
22   # FIXME inline-upgrade cpanm, work around https://github.com/travis-ci/travis-ci/issues/1477
23   cpanm_loc="$(which cpanm)"
24   run_or_err "Upgrading cpanm ($cpanm_loc) to latest stable" \
25     "wget -q -O $cpanm_loc cpanmin.us && chmod a+x $cpanm_loc"
26 fi
27
28 # Fixup CPANM_OPT to behave more like a traditional cpan client
29 export PERL_CPANM_OPT="--verbose --no-interactive --no-man-pages $( echo $PERL_CPANM_OPT | sed 's/--skip-satisfied//' )"
30
31 if [[ -n "$BREWVER" ]] ; then
32   # since perl 5.14 a perl can safely be built concurrently with -j$large
33   # (according to brute force testing and my power bill)
34   if [[ "$BREWVER" == "blead" ]] || perl -Mversion -e "exit !!(version->new(q($BREWVER)) < 5.014)" ; then
35     perlbrew_jopt="$NUMTHREADS"
36   fi
37
38   run_or_err "Compiling/installing Perl $BREWVER (without testing, using ${perlbrew_jopt:-1} threads, may take up to 5 minutes)" \
39     "perlbrew install --as $BREWVER --notest --noman --verbose $BREWOPTS -j${perlbrew_jopt:-1}  $BREWVER"
40
41   # can not do 'perlbrew uss' in the run_or_err subshell above, or a $()
42   # furthermore `perlbrew use` returns 0 regardless of whether the perl is
43   # found (won't be there unless compilation suceeded, wich *ALSO* returns 0)
44   perlbrew use $BREWVER
45
46   if [[ "$( perlbrew use | grep -oP '(?<=Currently using ).+' )" != "$BREWVER" ]] ; then
47     echo_err "Unable to switch to $BREWVER - compilation failed...?"
48     echo_err "$LASTOUT"
49     exit 1
50   fi
51
52 # no brewver - this means a travis perl, which means we want to clean up
53 # the presently installed libs
54 # Idea stolen from
55 # https://github.com/kentfredric/Dist-Zilla-Plugin-Prereqs-MatchInstalled-All/blob/master/maint-travis-ci/sterilize_env.pl
56 elif [[ "$CLEANTEST" == "true" ]] && [[ "$POISON_ENV" != "true" ]] ; then
57
58   echo_err "$(tstamp) Cleaning precompiled Travis-Perl"
59   perl -MConfig -MFile::Find -e '
60     my $sitedirs = {
61       map { $Config{$_} => 1 }
62         grep { $_ =~ /site(lib|arch)exp$/ }
63           keys %Config
64     };
65     find({ bydepth => 1, no_chdir => 1, follow_fast => 1, wanted => sub {
66       ! $sitedirs->{$_} and ( -d _ ? rmdir : unlink )
67     } }, keys %$sitedirs )
68   '
69
70   echo_err "Post-cleanup contents of sitelib of the pre-compiled Travis-Perl $TRAVIS_PERL_VERSION:"
71   echo_err "$(tree $(perl -MConfig -e 'print $Config{sitelib_stem}'))"
72   echo_err
73 fi
74
75 # configure CPAN.pm - older versions go into an endless loop
76 # when trying to autoconf themselves
77 CPAN_CFG_SCRIPT="
78   require CPAN;
79   require CPAN::FirstTime;
80   *CPAN::FirstTime::conf_sites = sub {};
81   CPAN::Config->load;
82   \$CPAN::Config->{urllist} = [qw{ $CPAN_MIRROR }];
83   \$CPAN::Config->{halt_on_failure} = 1;
84   CPAN::Config->commit;
85 "
86 run_or_err "Configuring CPAN.pm" "perl -e '$CPAN_CFG_SCRIPT'"