From 1fa4cad1ba63d6c5ea70758f42504b6c0da716d2 Mon Sep 17 00:00:00 2001 From: "Nathaniel J. Smith" Date: Sat, 2 Mar 2013 11:36:03 +0000 Subject: Travis: record some basic information about the build platform The question has come up sometimes about how much memory etc. we have available for Travis builds. Let's just log the relevant resource limits at the top of every build log. --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 61580a2ba..6cf83d8f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,10 @@ matrix: - python: 3.2 env: NPY_SEPARATE_COMPILATION=0 before_install: + - uname -a + - free -m + - df -h + - ulimit -a - mkdir builds - pushd builds - pip install nose -- cgit v1.2.1