diff options
author | Nathaniel J. Smith <njs@pobox.com> | 2013-03-02 11:36:03 +0000 |
---|---|---|
committer | Nathaniel J. Smith <njs@pobox.com> | 2013-03-02 11:43:01 +0000 |
commit | 1fa4cad1ba63d6c5ea70758f42504b6c0da716d2 (patch) | |
tree | 401c32e023f2af64c1d9179ed16e3404b95a873a | |
parent | b149cd5fdc03a8017036953e08d80305fe30bb53 (diff) | |
download | numpy-1fa4cad1ba63d6c5ea70758f42504b6c0da716d2.tar.gz |
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.
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
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 |