-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
58 lines (41 loc) · 1.3 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
# Framework for running automated tests on OSB using Travis-CI, see https://github.com/OpenSourceBrain/osb-model-validation
dist: bionic # bionic + py3.6 required for building Nest using omv...
addons:
apt:
packages:
# Requirements for Brian & NEST
- python-numpy
- python-scipy
- python-matplotlib
- python-sympy
- python-tables
- libreadline6-dev
- libncurses5-dev
- libgsl0-dev
- cython
language: python
python:
- 2.7
- 3.6 # bionic + py3.6 required for building Nest using omv...
env:
- OMV_ENGINE=NEST
- OMV_ENGINE=PyNEST:2.18.0 # try a specific version of NEST
#- OMV_ENGINE=PyNEST:2.20.0 # try a specific version of NEST
#- OMV_ENGINE=PyNN_Brian1
#- OMV_ENGINE=PyNN_NEURON
- OMV_ENGINE=PyNN_Nest
- OMV_ENGINE=jNeuroML_validate
install:
- pip install scipy matplotlib # Why is this needed? Doesn't seem to get installed correctly with addons above...
# Install OMV
- pip install git+https://github.com/OpenSourceBrain/osb-model-validation
- omv list -V
# Create a small scale network to test for NEST_SLI
- cd NEST_SLI/test/
- ./create_small_network_sim.sh
- ls -alt data
- cd ../..
- ./make_tests.sh
script:
- omv all -V
- omv list -V