(travis) Re-consolidate sysinfo handling (reverts part of 83da25f0)
[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
b2435630 5CPAN_MIRROR=$(echo "$PERL_CPANM_OPT" | grep -oP -- '--mirror\s+\S+' | head -n 1 | cut -d ' ' -f 2)
6if ! [[ "$CPAN_MIRROR" =~ "http://" ]] ; then
b58ecb01 7 echo_err "Unable to extract primary cpan mirror from PERL_CPANM_OPT - something is wrong"
8 echo_err "PERL_CPANM_OPT: $PERL_CPANM_OPT"
07292953 9 CPAN_MIRROR="http://cpan.metacpan.org/"
d71417ff 10 PERL_CPANM_OPT="$PERL_CPANM_OPT --mirror $CPAN_MIRROR"
b2435630 11 echo_err "Using $CPAN_MIRROR for the time being"
b58ecb01 12fi
13
07292953 14# do not set PERLBREW_CPAN_MIRROR - not all backpan-like mirrors have the perl tarballs
86370cc7 15export PERL_MM_USE_DEFAULT=1 PERL_MM_NONINTERACTIVE=1 PERL_AUTOINSTALL_PREFER_CPAN=1 HARNESS_TIMER=1 MAKEFLAGS="-j$NUMTHREADS"
b58ecb01 16
2f51deb1 17# try CPAN's latest offering if requested
18if [[ "$DEVREL_DEPS" == "true" ]] ; then
19
2f51deb1 20 PERL_CPANM_OPT="$PERL_CPANM_OPT --dev"
21
8cddfc1b 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"
2f51deb1 26fi
27
b58ecb01 28# Fixup CPANM_OPT to behave more like a traditional cpan client
a1f6d93c 29export PERL_CPANM_OPT="--verbose --no-interactive --no-man-pages $( echo $PERL_CPANM_OPT | sed 's/--skip-satisfied//' )"
b58ecb01 30
31if [[ -n "$BREWVER" ]] ; then
4bbabf15 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"
b58ecb01 40
d2b1fee9 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
2c754d14 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
56elif [[ "$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
b58ecb01 73fi
74
75# configure CPAN.pm - older versions go into an endless loop
76# when trying to autoconf themselves
77CPAN_CFG_SCRIPT="
78 require CPAN;
79 require CPAN::FirstTime;
80 *CPAN::FirstTime::conf_sites = sub {};
81 CPAN::Config->load;
b2435630 82 \$CPAN::Config->{urllist} = [qw{ $CPAN_MIRROR }];
b58ecb01 83 \$CPAN::Config->{halt_on_failure} = 1;
84 CPAN::Config->commit;
85"
86run_or_err "Configuring CPAN.pm" "perl -e '$CPAN_CFG_SCRIPT'"