-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
31 lines (29 loc) · 1.69 KB
/
.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
sudo: required
os:
- linux
services:
- docker
jobs:
include:
- stage: build docker image
script:
- cd ..
- docker build -t yloc YLoc/
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-LowRes* Animals"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-LowRes Animals"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-LowRes Fungi"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-LowRes* Fungi"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-LowRes Plants"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-LowRes* Plants"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-HighRes Animals"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-HighRes Fungi"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-HighRes Plants"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-HighRes* Animals"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-HighRes* Fungi"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc-HighRes* Plants"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc+ Animals"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc+ Fungi"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc+ Plants"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc+* Animals"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc+* Fungi"
- docker run --rm yloc python /YLoc/yloc.py /YLoc/test.fasta "YLoc+* Plants"