Ignore:
Timestamp:
Oct 4, 2016, 4:13:00 PM (9 years ago)
Author:
steve
Message:

Commit svn after a lot of git updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/.travis.yml

    r9734 r9737  
    11language: python
    2 sudo: required
    3 virtualenv:
    4   system_site_packages: true
    5 env:
    6   matrix:
    7     #- PYTHON_VERSION="2.7"  ANUGA_PARALLEL="openmpi"  DISTRIB="conda"
    8     - PYTHON_VERSION="2.7"  ANUGA_PARALLEL="openmpi"  DISTRIB="ubuntu"
    9     #- PYTHON_VERSION="2.7"  ANUGA_PARALLEL="mpich2"  DISTRIB="conda"
    10     - PYTHON_VERSION="2.7"  ANUGA_PARALLEL="mpich2"  DISTRIB="ubuntu" COVERAGE="--coverage"
    11     - PYTHON_VERSION="2.7"  ANUGA_PARALLEL="false"   DISTRIB="ubuntu"
    12     #- PYTHON_VERSION="2.6"  ANUGA_PARALLEL="false"   DISTRIB="conda"
     2matrix:
     3
     4   include:
     5       - os: linux
     6         sudo: required
     7         python: "2.7_with_system_site_packages"
     8         env: PYTHON_VERSION="2.7"  ANUGA_PARALLEL="openmpi"  DISTRIB="ubuntu"
     9
     10       - os: linux
     11         sudo: required
     12         python: "2.7_with_system_site_packages"
     13         env: PYTHON_VERSION="2.7"  ANUGA_PARALLEL="mpich2"  DISTRIB="ubuntu"
     14
     15       - os: linux
     16         dist: trusty
     17         sudo: required
     18         python: "2.7_with_system_site_packages"
     19         env: PYTHON_VERSION="2.7"  ANUGA_PARALLEL="mpich"  DISTRIB="ubuntu"
     20
     21       - os: linux
     22         dist: trusty
     23         sudo: required
     24         python: "2.7_with_system_site_packages"
     25         env: PYTHON_VERSION="2.7"  ANUGA_PARALLEL="false"  DISTRIB="ubuntu"
     26
     27
     28       - os: linux
     29         dist: trusty
     30         sudo: required
     31         python: "2.7_with_system_site_packages"
     32         env: PYTHON_VERSION="2.7"  ANUGA_PARALLEL="openmpi"  DISTRIB="ubuntu" COVERAGE="--coverage"
     33
    1334
    1435install:
    1536    - if [[ "$DISTRIB" == "conda" ]]; then source tools/install_conda.sh; fi
    1637    - if [[ "$DISTRIB" == "ubuntu" ]]; then source tools/install_ubuntu.sh; fi
     38    - if [[ "$COVERAGE" == "--coverage" ]]; then pip install coverage coveralls; fi
     39
    1740
    1841script:
Note: See TracChangeset for help on using the changeset viewer.