forked from phylo42/PEWO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (32 loc) · 936 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
git:
depth: 150
env:
global:
- CONDA_DIR="$HOME/miniconda"
stages:
- test_accuracy
- test_likelihood
- test_resources
jobs:
include:
- language: python
python: "3.6"
env: TRAVIS_JOB=test_accuracy
before_install:
- source travis/install_conda.sh
install: ant -f "$TRAVIS_BUILD_DIR"/scripts/java/PEWO_java/build-cli.xml
script: travis/test_accuracy.sh
- language: python
python: "3.6"
env: TRAVIS_JOB=test_likelihood
before_install:
- source travis/install_conda.sh
install: ant -f "$TRAVIS_BUILD_DIR"/scripts/java/PEWO_java/build-cli.xml
script: travis/test_likelihood.sh
- language: python
python: "3.6"
env: TRAVIS_JOB=test_resources
before_install:
- source travis/install_conda.sh
install: ant -f "$TRAVIS_BUILD_DIR"/scripts/java/PEWO_java/build-cli.xml
script: travis/test_resources.sh