forked from hainm/pdb4amber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (33 loc) · 843 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
language: cpp
matrix:
include:
- { os: linux, env: PYTHON_VERSION=2.7 }
- { os: linux, env: PYTHON_VERSION=3.5 }
- { os: linux, env: PYTHON_VERSION=3.6 }
sudo: true
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
- gfortran
- unzip
before_install:
- source devtools/ci/setup_env.sh
- source devtools/ci/install_parmed.sh # always install after AmberTools
- python -c "import parmed; print(parmed); print(parmed.__version__)"
install:
- source devtools/ci/install_pdb4amber.sh # always install after AmberTools
script:
- reduce -Version
- tleap -h
- pdb4amber -v
- which AddToBox
- source devtools/ci/run_tests.sh
after_success:
- echo "Congrats"
- (cd tests && ../devtools/ci/coveralls)
notifications:
email: false