From: Peter Rabbitson Date: Fri, 2 Jan 2015 12:23:00 +0000 (+0100) Subject: (travis) remove two more workarounds for issues that have since been resolved X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=45db0adc8afbd7c42aa8b9bf18a43feb4369bacc (travis) remove two more workarounds for issues that have since been resolved https://rt.cpan.org/Ticket/Display.html?id=99747 https://github.com/travis-ci/travis-ci/issues/1477 --- diff --git a/maint/travis-ci_scripts/20_install.bash b/maint/travis-ci_scripts/20_install.bash index 7db49bb..a3d1c70 100755 --- a/maint/travis-ci_scripts/20_install.bash +++ b/maint/travis-ci_scripts/20_install.bash @@ -16,10 +16,6 @@ if [[ "$DEVREL_DEPS" == "true" ]] ; then PERL_CPANM_OPT="$PERL_CPANM_OPT --dev" - # FIXME inline-upgrade cpanm, work around https://github.com/travis-ci/travis-ci/issues/1477 - cpanm_loc="$(which cpanm)" - run_or_err "Upgrading cpanm ($cpanm_loc) to latest stable" \ - "wget -q -O $cpanm_loc cpanmin.us && chmod a+x $cpanm_loc" fi # Fixup CPANM_OPT to behave more like a traditional cpan client @@ -50,7 +46,7 @@ if [[ -n "$BREWVER" ]] ; then # the presently installed libs # Idea stolen from # https://github.com/kentfredric/Dist-Zilla-Plugin-Prereqs-MatchInstalled-All/blob/master/maint-travis-ci/sterilize_env.pl -# Only works on 5.12+ (where sitlib was finally properly fixed) +# Only works on 5.12+ (where sitelib was finally properly fixed) elif [[ "$CLEANTEST" == "true" ]] && [[ "$POISON_ENV" != "true" ]] && perl -M5.012 -e 1 &>/dev/null ; then echo_err "$(tstamp) Cleaning precompiled Travis-Perl" diff --git a/maint/travis-ci_scripts/30_before_script.bash b/maint/travis-ci_scripts/30_before_script.bash index d327da1..b13fda7 100755 --- a/maint/travis-ci_scripts/30_before_script.bash +++ b/maint/travis-ci_scripts/30_before_script.bash @@ -72,12 +72,6 @@ if [[ "$CLEANTEST" = "true" ]]; then installdeps ExtUtils::MakeMaker ExtUtils::CBuilder Module::Build fi - # FIXME - temporary until 1.46 comes out / RT#99747 is fixed - # insufficient testing of 5.8.3, ned older DBD::SQlite, ribasushi-- - if ! perl -M5.008004 -e 1 &>/dev/null ; then - installdeps DBI I/IS/ISHIGAKI/DBD-SQLite-1.42.tar.gz - fi - fi else