Shuffle author-side M::I stuff out of the way
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 50_after_success.bash
CommitLineData
b58ecb01 1#!/bin/bash
2
3source maint/travis-ci_scripts/common.bash
4if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
344f1f52 6if [[ "$CLEANTEST" != "true" ]] ; then
e5ba0859 7 run_or_err "Install Pod::POM separately via cpan" "cpan -f -i Pod::POM || perl -MPod::POM -e 1"
344f1f52 8 parallel_installdeps_notest $(perl -Ilib -MDBIx::Class -e 'print join " ", keys %{DBIx::Class::Optional::Dependencies->req_list_for("dist_dir")}')
9 run_or_err "Attempt to build a dist with all prereqs present" "make dist"
7343c211 10 echo "Contents of the resulting dist tarball:"
11 echo "==========================================="
12 tar -ztf DBIx-Class-*.tar.gz
13 echo "==========================================="
344f1f52 14fi