forked from OpenSourceBrain/osb-model-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
87 lines (73 loc) · 1.95 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
dist: trusty
sudo: false
addons:
apt:
packages:
# Requirements for Brian & NEST
- python-numpy
- python-scipy
- python-matplotlib
- python-sympy
- python-tornado
- cython
# Requirements for Octave
- octave
# Requirements for NetPyNE & libNeuroML
- python-tk
- python-lxml
# Requirements for Moose
- python-dev
- libhdf5-dev
- libgsl0-dev
- g++
language: python
python: 2.7
virtualenv:
system_site_packages: true
env:
- OMV_ENGINE=Brian
- OMV_ENGINE=Brian2
- OMV_ENGINE=NEST
- OMV_ENGINE=PyNEST
- OMV_ENGINE=Octave
- OMV_ENGINE=genesis
- OMV_ENGINE=Moose
- OMV_ENGINE=NEURON
- OMV_ENGINE=PyNEURON
- OMV_ENGINE=PyNN
- OMV_ENGINE=PyNN_NEURON
- OMV_ENGINE=PyNN_Brian1
- OMV_ENGINE=PyNN_Nest
- OMV_ENGINE=PyNN_NeuroML
- OMV_ENGINE=NetPyNE
- OMV_ENGINE=PyLEMS
- OMV_ENGINE=PyLEMS_NeuroML2
- OMV_ENGINE=jLEMS
- OMV_ENGINE=jNeuroML
- OMV_ENGINE=jNeuroML_Brian
- OMV_ENGINE=jNeuroML_Brian2
- OMV_ENGINE=jNeuroML_Moose
- OMV_ENGINE=jNeuroML_NEURON
- OMV_ENGINE=jNeuroML_NetPyNE
- OMV_ENGINE=jNeuroML_PyNN_NEURON
- OMV_ENGINE=jNeuroML_validate
- OMV_ENGINE=jNeuroML_validatev1
- OMV_ENGINE=Py_neuroConstruct
- OMV_ENGINE=pyNeuroML
- OMV_ENGINE=DIRECT_ENGINE_INSTALL
install:
- python setup.py install
script:
- omv list-engines
- cd utilities/tests
- omv all -V; export OMV_SUCCESS=$?; echo $OMV_SUCCESS
- omv list-engines
- echo "Finished all OMV tests on *.omt files which have been found"
- if [[ ${OMV_ENGINE} == "DIRECT_ENGINE_INSTALL" ]]; then echo "Continuing..."; else exit $OMV_SUCCESS; fi
- echo "Testing direct installation of some simulators..."
- omv install Brian
- omv install PyNEURON
- omv install NEURON
- omv install PyLEMS_NeuroML2
- omv install NetPyNE
- omv list-engines