.travis.yml 865 Bytes
Newer Older
John Chodera (MSKCC)'s avatar
John Chodera (MSKCC) committed
1
language: c
2

John Chodera (MSKCC)'s avatar
John Chodera (MSKCC) committed
3
4
5
install:
  - source tools/ci/install.sh
  - export PYTHONUNBUFFERED=true
6

7
script:
John Chodera (MSKCC)'s avatar
John Chodera (MSKCC) committed
8
9
10
11
12
13
14
  - export CC="gcc -std=c89"
  - source deactivate
  - conda install --yes conda-build
  - conda build tools/conda-recipe
  - source activate $python
  - conda install $HOME/miniconda/conda-bld/linux-64/openmm-dev-*
  - conda list -e
15
16
  - # run the python tests too
  - cd wrappers/python/tests
17
  - nosetests -vv --processes=-1 --process-timeout=200
John Chodera (MSKCC)'s avatar
John Chodera (MSKCC) committed
18
19
20
21

env:
  matrix:
    - python=2.7  CONDA_PY=27
22
    #- python=3.3  CONDA_PY=33
John Chodera (MSKCC)'s avatar
John Chodera (MSKCC) committed
23
24
25

  global:
    # encrypted BINSTAR_TOKEN for push of dev package to binstar
26
    - secure: "ClGfqug2783GRJQERxzlVtY2gLwaaVlviznEB3LQ1rJ7Z2c+rQsQZy2LqtqioAYG/SlBw8hurKZXAJ92hczzzRf98zkCzIP1EcxzHvPgpddoJAEZkwdHFfYFqjElviCu2r55WfU/J8hLGpaELeeR0rgYRpqmHjDqoEUCih5Dqf4="
John Chodera (MSKCC)'s avatar
John Chodera (MSKCC) committed
27
28
29
30
31
32

after_success:
  - echo "after_success"
  - source tools/ci/after_sucess.sh