Fix test suite to work again with DBICTEST_SQLITE_USE_FILE
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 20_install.bash
1 #!/bin/bash
2
3 if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
4
5 # we need a mirror that both has the standard index and a backpan version rolled
6 # into one, due to MDV testing
7 CPAN_MIRROR="http://cpan.metacpan.org/"
8
9 PERL_CPANM_OPT="$PERL_CPANM_OPT --mirror $CPAN_MIRROR"
10
11 # do not set PERLBREW_CPAN_MIRROR - not all backpan-like mirrors have the perl tarballs
12 export PERL_MM_USE_DEFAULT=1 PERL_MM_NONINTERACTIVE=1 PERL_AUTOINSTALL_PREFER_CPAN=1 HARNESS_TIMER=1 MAKEFLAGS="-j$NUMTHREADS"
13
14 # try CPAN's latest offering if requested
15 if [[ "$DEVREL_DEPS" == "true" ]] ; then
16
17   PERL_CPANM_OPT="$PERL_CPANM_OPT --dev"
18
19 fi
20
21 # Fixup CPANM_OPT to behave more like a traditional cpan client
22 export PERL_CPANM_OPT="--verbose --no-interactive --no-man-pages $( echo $PERL_CPANM_OPT | sed 's/--skip-satisfied//' )"
23
24 if [[ -n "$BREWVER" ]] ; then
25   # since perl 5.14 a perl can safely be built concurrently with -j$large
26   # (according to brute force testing and my power bill)
27   if [[ "$BREWVER" == "blead" ]] || perl -Mversion -e "exit !!(version->new(q($BREWVER)) < 5.014)" ; then
28     perlbrew_jopt="$NUMTHREADS"
29   fi
30
31   run_or_err "Compiling/installing Perl $BREWVER (without testing, using ${perlbrew_jopt:-1} threads, may take up to 5 minutes)" \
32     "perlbrew install --as $BREWVER --notest --noman --verbose $BREWOPTS -j${perlbrew_jopt:-1}  $BREWVER"
33
34   # can not do 'perlbrew uss' in the run_or_err subshell above, or a $()
35   # furthermore `perlbrew use` returns 0 regardless of whether the perl is
36   # found (won't be there unless compilation suceeded, wich *ALSO* returns 0)
37   perlbrew use $BREWVER
38
39   if [[ "$( perlbrew use | grep -oP '(?<=Currently using ).+' )" != "$BREWVER" ]] ; then
40     echo_err "Unable to switch to $BREWVER - compilation failed...?"
41     echo_err "$LASTOUT"
42     exit 1
43   fi
44
45 # no brewver - this means a travis perl, which means we want to clean up
46 # the presently installed libs
47 # Idea stolen from
48 # https://github.com/kentfredric/Dist-Zilla-Plugin-Prereqs-MatchInstalled-All/blob/master/maint-travis-ci/sterilize_env.pl
49 # Only works on 5.12+ (where sitelib was finally properly fixed)
50 elif [[ "$CLEANTEST" == "true" ]] && [[ "$POISON_ENV" != "true" ]] && perl -M5.012 -e 1 &>/dev/null ; then
51
52   echo_err "$(tstamp) Cleaning precompiled Travis-Perl"
53   perl -M5.012 -MConfig -MFile::Find -e '
54     my $sitedirs = {
55       map { $Config{$_} => 1 }
56         grep { $_ =~ /site(lib|arch)exp$/ }
57           keys %Config
58     };
59     find({ bydepth => 1, no_chdir => 1, follow_fast => 1, wanted => sub {
60       ! $sitedirs->{$_} and ( -d _ ? rmdir : unlink )
61     } }, keys %$sitedirs )
62   '
63
64   echo_err "Post-cleanup contents of sitelib of the pre-compiled Travis-Perl $TRAVIS_PERL_VERSION:"
65   echo_err "$(tree $(perl -MConfig -e 'print $Config{sitelib_stem}'))"
66   echo_err
67 fi
68
69 # configure CPAN.pm - older versions go into an endless loop
70 # when trying to autoconf themselves
71 CPAN_CFG_SCRIPT="
72   require CPAN;
73   require CPAN::FirstTime;
74   *CPAN::FirstTime::conf_sites = sub {};
75   CPAN::Config->load;
76   \$CPAN::Config->{urllist} = [qw{ $CPAN_MIRROR }];
77   \$CPAN::Config->{halt_on_failure} = 1;
78   CPAN::Config->commit;
79 "
80 run_or_err "Configuring CPAN.pm" "perl -e '$CPAN_CFG_SCRIPT'"
81
82 # poison the environment
83 if [[ "$POISON_ENV" = "true" ]] ; then
84
85   # in addition to making sure tests do not rely on implicid order of
86   # returned results, look through lib, find all mentioned ENVvars and
87   # set them to true and see if anything explodes
88   for var in \
89     DBICTEST_SQLITE_USE_FILE \
90     DBICTEST_RUN_ALL_TESTS \
91     DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER \
92     $( grep -P '\$ENV\{' -r lib/ --exclude-dir Optional | grep -oP '\bDBIC\w+' | sort -u | grep -vP '^(DBIC_TRACE(_PROFILE)?|DBIC_.+_DEBUG)$' )
93   do
94     if [[ -z "${!var}" ]] ; then
95       export $var=1
96       echo "POISON_ENV: setting $var to 1"
97     fi
98   done
99
100   # bogus nonexisting DBI_*
101   export DBI_DSN="dbi:ODBC:server=NonexistentServerAddress"
102   export DBI_DRIVER="ADO"
103
104   # some people do in fact set this - boggle!!!
105   # it of course won't work before 5.8.4
106   if perl -M5.008004 -e 1 &>/dev/null ; then
107     export PERL_STRICTURES_EXTRA=1
108   fi
109
110   # emulate a local::lib-like env
111   # trick cpanm into executing true as shell - we just need the find+unpack
112   run_or_err "Downloading latest stable DBIC from CPAN" \
113     "SHELL=/bin/true cpanm --look DBIx::Class"
114
115   export PERL5LIB="$( ls -d ~/.cpanm/latest-build/DBIx-Class-*/lib | tail -n1 ):$PERL5LIB"
116
117   # perldoc -l <mod> searches $(pwd)/lib in addition to PERL5LIB etc, hence the cd /
118   echo_err "Latest stable DBIC (without deps) locatable via \$PERL5LIB at $(cd / && perldoc -l DBIx::Class)"
119
120 fi
121
122 if [[ "$CLEANTEST" != "true" ]] ; then
123   # using SQLT if will be available
124   # not doing later because we will be running in a subshell
125   export DBICTEST_SQLT_DEPLOY=1
126
127 fi