(travis) Make sure we really test everything when using cpanm (devrels)
[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
61fbcea7 5# we need a mirror that both has the standard index and a backpan version rolled
6# into one, due to MDV testing
7CPAN_MIRROR="http://cpan.metacpan.org/"
8
9PERL_CPANM_OPT="$PERL_CPANM_OPT --mirror $CPAN_MIRROR"
b58ecb01 10
07292953 11# do not set PERLBREW_CPAN_MIRROR - not all backpan-like mirrors have the perl tarballs
5ac4a96d 12export PERL_MM_USE_DEFAULT=1 PERL_MM_NONINTERACTIVE=1 PERL_AUTOINSTALL_PREFER_CPAN=1 HARNESS_TIMER=1 MAKEFLAGS="-j$VCPU_USE"
b58ecb01 13
2f51deb1 14# try CPAN's latest offering if requested
15if [[ "$DEVREL_DEPS" == "true" ]] ; then
16
2f51deb1 17 PERL_CPANM_OPT="$PERL_CPANM_OPT --dev"
18
2f51deb1 19fi
20
b58ecb01 21# Fixup CPANM_OPT to behave more like a traditional cpan client
a1f6d93c 22export PERL_CPANM_OPT="--verbose --no-interactive --no-man-pages $( echo $PERL_CPANM_OPT | sed 's/--skip-satisfied//' )"
b58ecb01 23
24if [[ -n "$BREWVER" ]] ; then
62f2092b 25
4bbabf15 26 # since perl 5.14 a perl can safely be built concurrently with -j$large
27 # (according to brute force testing and my power bill)
62f2092b 28 if [[ "$BREWVER" =~ [A-Za-z] ]] || perl -Mversion -e "exit !!(version->new(q($BREWVER)) < 5.014)" ; then
5ac4a96d 29 perlbrew_jopt="$VCPU_USE"
4bbabf15 30 fi
31
62f2092b 32 BREWSRC="$BREWVER"
33
34 if [[ "$BREWVER" == "schmorp_stableperl" ]] ; then
35 BREWSRC="http://stableperl.schmorp.de/dist/stableperl-5.22.0-1.001.tar.gz"
36 fi
37
4bbabf15 38 run_or_err "Compiling/installing Perl $BREWVER (without testing, using ${perlbrew_jopt:-1} threads, may take up to 5 minutes)" \
62f2092b 39 "perlbrew install --as $BREWVER --notest --noman --verbose $BREWOPTS -j${perlbrew_jopt:-1} $BREWSRC"
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
fb954d9d 54elif [[ "$CLEANTEST" == "true" ]] && [[ "$POISON_ENV" != "true" ]] ; then
55 purge_sitelib
b58ecb01 56fi
57
58# configure CPAN.pm - older versions go into an endless loop
59# when trying to autoconf themselves
60CPAN_CFG_SCRIPT="
61 require CPAN;
62 require CPAN::FirstTime;
63 *CPAN::FirstTime::conf_sites = sub {};
64 CPAN::Config->load;
b2435630 65 \$CPAN::Config->{urllist} = [qw{ $CPAN_MIRROR }];
b58ecb01 66 \$CPAN::Config->{halt_on_failure} = 1;
67 CPAN::Config->commit;
68"
69run_or_err "Configuring CPAN.pm" "perl -e '$CPAN_CFG_SCRIPT'"
afeb40d2 70
71# poison the environment
72if [[ "$POISON_ENV" = "true" ]] ; then
73
0ba0c34f 74 # look through lib, find all mentioned DBIC* ENVvars and set them to true and see if anything explodes
75 toggle_booleans=( $(grep -P '\$ENV\{' -r lib/ --exclude-dir Optional | grep -oP '\bDBIC\w+' | sort -u | grep -vP '^(DBIC_TRACE(_PROFILE)?|DBIC_.+_DEBUG)$') )
76
77 # some extra pollutants
78 toggle_booleans+=( \
ee573365 79 DBICTEST_SQLITE_USE_FILE \
c26b30de 80 DBICTEST_RUN_ALL_TESTS \
afeb40d2 81 DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER \
0ba0c34f 82 )
afeb40d2 83
8b60b921 84 # if we have Moose - try to run everything under replicated
85 # FIXME - when switching to Moo kill this
86 if [[ "$CLEANTEST" != "true" ]] && perl -M5.008003 -e 1 &>/dev/null ; then
0ba0c34f 87 toggle_booleans+=( DBICTEST_VIA_REPLICATED )
8b60b921 88 fi
89
afeb40d2 90 # some people do in fact set this - boggle!!!
e52712a8 91 # it of course won't work before 5.8.4
92 if perl -M5.008004 -e 1 &>/dev/null ; then
0ba0c34f 93 toggle_booleans+=( PERL_STRICTURES_EXTRA )
e52712a8 94 fi
afeb40d2 95
0ba0c34f 96 for var in "${toggle_booleans[@]}"
97 do
98 if [[ -z "${!var}" ]] ; then
99 export $var=1
100 echo "POISON_ENV: setting $var to 1"
101 fi
102 done
103
104 # bogus nonexisting DBI_*
105 export DBI_DSN="dbi:ODBC:server=NonexistentServerAddress"
106 export DBI_DRIVER="ADO"
107
afeb40d2 108 # emulate a local::lib-like env
109 # trick cpanm into executing true as shell - we just need the find+unpack
110 run_or_err "Downloading latest stable DBIC from CPAN" \
111 "SHELL=/bin/true cpanm --look DBIx::Class"
112
113 export PERL5LIB="$( ls -d ~/.cpanm/latest-build/DBIx-Class-*/lib | tail -n1 ):$PERL5LIB"
114
115 # perldoc -l <mod> searches $(pwd)/lib in addition to PERL5LIB etc, hence the cd /
116 echo_err "Latest stable DBIC (without deps) locatable via \$PERL5LIB at $(cd / && perldoc -l DBIx::Class)"
117
118fi
119
120if [[ "$CLEANTEST" != "true" ]] ; then
121 # using SQLT if will be available
122 # not doing later because we will be running in a subshell
123 export DBICTEST_SQLT_DEPLOY=1
124
125fi
ab314234 126
127# FIXME - work around https://github.com/miyagawa/cpanminus/issues/462
128# seriously...
129perl -p -i -e 's/\blocal\$self->\{notest\}=1;//' $(which cpanm)