(travis) Add a CLEANTEST run of RURBAN's cperl in the spirit of 62f2092b
[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$VCPU_USE"
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
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)
28   if [[ "$BREWVER" =~ [A-Za-z] ]] || perl -Mversion -e "exit !!(version->new(q($BREWVER)) < 5.014)" ; then
29     perlbrew_jopt="$VCPU_USE"
30   fi
31
32   BREWSRC="$BREWVER"
33
34   if is_cperl; then
35     # FFS perlbrew ( see http://wollmers-perl.blogspot.de/2015/10/install-cperl-with-perlbrew.html )
36     wget -qO- https://github.com/perl11/cperl/archive/$BREWVER.tar.gz > /tmp/cperl-$BREWVER.tar.gz
37     BREWSRC="/tmp/cperl-$BREWVER.tar.gz"
38   elif [[ "$BREWVER" == "schmorp_stableperl" ]] ; then
39     BREWSRC="http://stableperl.schmorp.de/dist/stableperl-5.22.0-1.001.tar.gz"
40   fi
41
42   run_or_err "Compiling/installing Perl $BREWVER (without testing, using ${perlbrew_jopt:-1} threads, may take up to 5 minutes)" \
43     "perlbrew install --as $BREWVER --notest --noman --verbose $BREWOPTS -j${perlbrew_jopt:-1}  $BREWSRC"
44
45   # can not do 'perlbrew use' in the run_or_err subshell above, or a $()
46   # furthermore some versions of `perlbrew use` return 0 regardless of whether
47   # the perl is found (won't be there unless compilation suceeded, wich *ALSO* returns 0)
48   perlbrew use $BREWVER || /bin/true
49
50   if [[ "$( perlbrew use | grep -oP '(?<=Currently using ).+' )" != "$BREWVER" ]] ; then
51     echo_err "Unable to switch to $BREWVER - compilation failed...?"
52     echo_err "$LASTOUT"
53     exit 1
54   fi
55
56 # no brewver - this means a travis perl, which means we want to clean up
57 # the presently installed libs
58 elif [[ "$CLEANTEST" == "true" ]] && [[ "$POISON_ENV" != "true" ]] ; then
59   purge_sitelib
60 fi
61
62 # configure CPAN.pm - older versions go into an endless loop
63 # when trying to autoconf themselves
64 CPAN_CFG_SCRIPT="
65   require CPAN;
66   require CPAN::FirstTime;
67   *CPAN::FirstTime::conf_sites = sub {};
68   CPAN::Config->load;
69   \$CPAN::Config->{urllist} = [qw{ $CPAN_MIRROR }];
70   \$CPAN::Config->{halt_on_failure} = 1;
71   CPAN::Config->commit;
72 "
73 run_or_err "Configuring CPAN.pm" "perl -e '$CPAN_CFG_SCRIPT'"
74
75
76 # These envvars are always set, more *maybe* below
77 export DBIC_SHUFFLE_UNORDERED_RESULTSETS=1
78
79 # bogus nonexisting DBI_*
80 export DBI_DSN="dbi:ODBC:server=NonexistentServerAddress"
81 export DBI_DRIVER="ADO"
82
83 # some people do in fact set this - boggle!!!
84 # it of course won't work before 5.8.4
85 if perl -M5.008004 -e 1 &>/dev/null ; then
86   export PERL_STRICTURES_EXTRA=1
87 fi
88
89
90 # poison the environment
91 if [[ "$POISON_ENV" = "true" ]] ; then
92
93   toggle_vars=( MVDT )
94
95   [[ "$CLEANTEST" == "true" ]] && toggle_vars+=( BREAK_CC )
96
97   for var in "${toggle_vars[@]}"  ; do
98     if [[ -z "${!var}" ]] ; then
99       export $var=true
100       echo "POISON_ENV: setting $var to 'true'"
101     fi
102   done
103
104   # look through lib, find all mentioned DBIC* ENVvars and set them to true and see if anything explodes
105   toggle_booleans=( $( grep -ohP '\bDBIC_[0-9_A-Z]+' -r lib/ --exclude-dir Optional | sort -u | grep -vP '^(DBIC_TRACE(_PROFILE)?|DBIC_.+_DEBUG)$' ) )
106
107   # some extra pollutants
108   toggle_booleans+=( \
109     DBICTEST_ASSERT_NO_SPURIOUS_EXCEPTION_ACTION \
110     DBICTEST_SQLITE_USE_FILE \
111     DBICTEST_RUN_ALL_TESTS \
112     DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER \
113   )
114
115   # if we have Moose - try to run everything under replicated
116   # FIXME - when switching to Moo kill this
117   if [[ "$CLEANTEST" != "true" ]] && perl -M5.008003 -e 1 &>/dev/null ; then
118     toggle_booleans+=( DBICTEST_VIA_REPLICATED )
119   fi
120
121   for var in "${toggle_booleans[@]}"
122   do
123     if [[ -z "${!var}" ]] ; then
124       export $var=1
125       echo "POISON_ENV: setting $var to 1"
126     fi
127   done
128
129
130 ### emulate a local::lib-like env
131   # trick cpanm into executing true as shell - we just need the find+unpack
132   run_or_err "Downloading latest stable DBIC from CPAN" \
133     "SHELL=/bin/true cpanm --look DBIx::Class"
134
135   # move it somewhere as following cpanm will clobber it
136   run_or_err "Moving latest stable DBIC from CPAN to /tmp" "mv ~/.cpanm/latest-build/DBIx-Class-*/lib /tmp/stable_dbic_lib"
137
138   export PERL5LIB="/tmp/stable_dbic_lib:$PERL5LIB"
139
140   # perldoc -l <mod> searches $(pwd)/lib in addition to PERL5LIB etc, hence the cd /
141   echo_err "Latest stable DBIC (without deps) locatable via \$PERL5LIB at $(cd / && perldoc -l DBIx::Class)"
142
143 fi
144
145 if [[ "$CLEANTEST" != "true" ]] ; then
146   # using SQLT if will be available
147   # not doing later because we will be running in a subshell
148   export DBICTEST_SQLT_DEPLOY=1
149
150 fi
151
152 # FIXME - work around https://github.com/miyagawa/cpanminus/issues/462
153 # seriously...
154 perl -p -i -e 's/\blocal\$self->\{notest\}=1;//' $(which cpanm)