X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=maint%2Ftravis-ci_scripts%2F50_after_success.bash;h=c8d2bac917d3bbacfd80523cf2e96e0db6c7cd8a;hb=0488c7e1294791e01dc75dfe633454d0f4201384;hp=e5fb764b150fbf33924e5aa45e9e8914ec0ac7ea;hpb=b4c99fb0b6444f34f65df5884e2a8bd33aa191ad;p=dbsrgits%2FDBIx-Class.git diff --git a/maint/travis-ci_scripts/50_after_success.bash b/maint/travis-ci_scripts/50_after_success.bash index e5fb764..c8d2bac 100755 --- a/maint/travis-ci_scripts/50_after_success.bash +++ b/maint/travis-ci_scripts/50_after_success.bash @@ -4,7 +4,12 @@ source maint/travis-ci_scripts/common.bash if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi if [[ "$CLEANTEST" != "true" ]] ; then - run_or_err "Install Pod::POM separately via cpan" "cpan Pod::POM" parallel_installdeps_notest $(perl -Ilib -MDBIx::Class -e 'print join " ", keys %{DBIx::Class::Optional::Dependencies->req_list_for("dist_dir")}') run_or_err "Attempt to build a dist with all prereqs present" "make dist" + echo "Contents of the resulting dist tarball:" + echo "===========================================" + tar -vzxf DBIx-Class-*.tar.gz + echo "===========================================" + run_or_err 'Attempt to configure from re-extracted distdir' \ + 'bash -c "cd \$(find DBIx-Class-* -maxdepth 0 -type d | head -n 1) && perl Makefile.PL"' fi