-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
47 lines (36 loc) · 1.18 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
41
42
43
44
45
46
47
dist: xenial
language: java
jdk:
- oraclejdk11
- openjdk8
#- openjdk10 # Some non deterministic recurring error with jdk10...
- openjdk11
install:
- export main_repo_branch=$TRAVIS_BRANCH
- echo $main_repo_branch
- if [[ ${main_repo_branch} != "master" && ${main_repo_branch} != "development" && ${main_repo_branch} != "experimental" ]]; then main_repo_branch=development ; fi
- git clone https://github.com/NeuroML/NeuroML2.git
- cd NeuroML2
- git checkout $main_repo_branch
- mvn install
- cd ..
- git clone https://github.com/NeuroML/org.neuroml.model.injectingplugin.git
- cd org.neuroml.model.injectingplugin
- git checkout $main_repo_branch
- mvn install
- cd ..
- git clone https://github.com/NeuroML/org.neuroml.model
- cd org.neuroml.model
- git checkout $main_repo_branch
- mvn install
- cd ..
- git clone https://github.com/LEMS/jLEMS.git
- cd jLEMS
- git checkout $main_repo_branch
- mvn install
- cd ..
- git clone https://github.com/NeuroML/org.neuroml.export
- cd org.neuroml.export
- git checkout $main_repo_branch
- mvn install
- cd ..