Show more info about the system and show what did we end up building
Peter Rabbitson [Sun, 15 Dec 2013 10:17:34 +0000 (11:17 +0100)]
maint/travis-ci_scripts/30_before_script.bash
maint/travis-ci_scripts/50_after_success.bash

index 8497236..538157a 100755 (executable)
@@ -201,7 +201,13 @@ $(perl -0777 -p -e 's/.+\n\n(?!\z)//s' < /proc/cpuinfo)
 = Meminfo
 $(free -m -t)
 
-= Network Status
+= Kernel info
+$(uname -a)
+
+= Network Configuration
+$(ip addr)
+
+= Network Sockets Status
 $(sudo netstat -an46p | grep -Pv '\s(CLOSING|(FIN|TIME|CLOSE)_WAIT.?|LAST_ACK)\s')
 
 = Environment
index 917c963..9221433 100755 (executable)
@@ -7,4 +7,8 @@ if [[ "$CLEANTEST" != "true" ]] ; then
   run_or_err "Install Pod::POM separately via cpan" "cpan -f -i Pod::POM || perl -MPod::POM -e 1"
   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 -ztf DBIx-Class-*.tar.gz
+  echo "==========================================="
 fi