Update Firebird ODBC driver version
[dbsrgits/DBIx-Class-Schema-Loader.git] / maint / travis-ci_scripts / 50_after_success.bash
CommitLineData
b7254ae2 1#!/bin/bash
2
3source maint/travis-ci_scripts/common.bash
4if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
6if [[ "$CLEANTEST" != "true" ]] ; then
7 parallel_installdeps_notest $(perl -Ilib -MDBIx::Class -e 'print join " ", keys %{DBIx::Class::Optional::Dependencies->req_list_for("dist_dir")}')
8 run_or_err "Attempt to build a dist with all prereqs present" "make dist"
9 echo "Contents of the resulting dist tarball:"
10 echo "==========================================="
11 tar -vzxf DBIx-Class-*.tar.gz
12 echo "==========================================="
13 run_or_err 'Attempt to configure from re-extracted distdir' \
14 'bash -c "cd \$(find DBIx-Class-* -maxdepth 0 -type d | head -n 1) && perl Makefile.PL"'
15fi