forked from geneontology/go-ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (33 loc) · 1.39 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
32
33
34
35
36
37
38
39
40
## REMEMBER TO SET UP YOUR GITHUB REPO FOR TRAVIS
## Go to: https://travis-ci.org/obophenotype for details
# this gives us extra memory:
sudo: required
language: java
jdk:
- oraclejdk8
before_script:
- mkdir -p bin
- export PATH=$PATH:$PWD/bin
- wget http://build.berkeleybop.org/userContent/owltools/owltools -O bin/owltools
- wget http://build.berkeleybop.org/userContent/owltools/ontology-release-runner -O bin/ontology-release-runner
- wget http://build.berkeleybop.org/userContent/owltools/owltools-runner-all.jar -O bin/owltools-runner-all.jar
- wget http://build.berkeleybop.org/userContent/owltools/owltools-oort-all.jar -O bin/owltools-oort-all.jar
- wget http://build.berkeleybop.org/job/robot/lastSuccessfulBuild/artifact/bin/robot -O bin/robot
- wget http://build.berkeleybop.org/job/robot/lastSuccessfulBuild/artifact/bin/robot.jar -O bin/robot.jar
- wget --no-check-certificate https://raw.githubusercontent.com/cmungall/pattern2owl/master/apply-pattern.py -O bin/apply-pattern.py
- wget https://raw.githubusercontent.com/dosumis/dead_simple_owl_design_patterns/master/spec/DOSDP_schema_full.yaml
- chmod +x bin/*
- cd src/ontology
# command to run tests
script: travis_wait 45 make travis_test
#after_success:
# coveralls
# whitelist
#branches:
# only:
# - master
# - test-travis
### UNCOMMENT THIS AND ADD YOUR DETAILS:
#notifications:
# email:
# - YOURNAME@YOU.ORG