X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=maint%2Ftravis-ci_scripts%2F30_before_script.bash;h=24515a83d2f6650150fef3ed234a002348e4918b;hb=81698df5b8fb9654139e5ebe3d112d958bcb9856;hp=d5f3cd0c0e584f80fce6b37eeba1dddb7a6c1933;hpb=2c4abbea2d69eda73c1b91194eb8b7f52414d522;p=dbsrgits%2FDBIx-Class.git diff --git a/maint/travis-ci_scripts/30_before_script.bash b/maint/travis-ci_scripts/30_before_script.bash index d5f3cd0..24515a8 100755 --- a/maint/travis-ci_scripts/30_before_script.bash +++ b/maint/travis-ci_scripts/30_before_script.bash @@ -142,7 +142,12 @@ else run_or_err "Configure on current branch with --with-optdeps" "perl Makefile.PL --with-optdeps" - parallel_installdeps_notest "$(make listdeps | sort -R)" + # if we are smoking devrels - make sure we upgrade everything we know about + if [[ "$DEVREL_DEPS" == "true" ]] ; then + parallel_installdeps_notest "$(make listalldeps | sort -R)" + else + parallel_installdeps_notest "$(make listdeps | sort -R)" + fi run_or_err "Re-configure with --with-optdeps" "perl Makefile.PL --with-optdeps" fi