- DBICTEST_VIA_REPLICATED=0
- DBICTEST_VERSION_WARNS_INDISCRIMINATELY=1
+ - perl: "5.22.1_thr_qm"
+ # explicit new infra spec preparing for a future forced upgrade
+ # also need to pull in a sufficiently new compiler for quadmath.h
+ sudo: required
+ dist: trusty
+ env:
+ - VCPU_USE=1
+ - CLEANTEST=true
+ - POISON_ENV=true
+ - MVDT=false
+ - BREWVER=5.22.1
+ - BREWOPTS="-Duseithreads -Dusequadmath"
+
###
# Start of the allow_failures block
run_or_err "Compiling/installing Perl $BREWVER (without testing, using ${perlbrew_jopt:-1} threads, may take up to 5 minutes)" \
"perlbrew install --as $BREWVER --notest --noman --verbose $BREWOPTS -j${perlbrew_jopt:-1} $BREWSRC"
- # can not do 'perlbrew uss' in the run_or_err subshell above, or a $()
- # furthermore `perlbrew use` returns 0 regardless of whether the perl is
- # found (won't be there unless compilation suceeded, wich *ALSO* returns 0)
- perlbrew use $BREWVER
+ # can not do 'perlbrew use' in the run_or_err subshell above, or a $()
+ # furthermore some versions of `perlbrew use` return 0 regardless of whether
+ # the perl is found (won't be there unless compilation suceeded, wich *ALSO* returns 0)
+ perlbrew use $BREWVER || /bin/true
if [[ "$( perlbrew use | grep -oP '(?<=Currently using ).+' )" != "$BREWVER" ]] ; then
echo_err "Unable to switch to $BREWVER - compilation failed...?"