Skip to content

Update brian, nrn, nest, pynn #527

Update brian, nrn, nest, pynn

Update brian, nrn, nest, pynn #527

Workflow file for this run

name: Continuous builds
on:
schedule:
- cron: "1 1 1 */1 *" # Run once a month to test...
push:
branches: [ master, development, test_* ]
pull_request:
branches: [ master, development, test_* ]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: [ "3.11" ]
engine:
- Arbor
- "Brian2:2.9.0"
- Brian2
- EDEN
- "NEST:3.3"
- PyNEST
- PyNEST:3.1
- "NEURON"
- "PyNEURON:8.2.6"
- PyNN
- PyNN_Brian2
- PyNN_NEURON
- PyNN_Nest
- PyNN_NeuroML
- NetPyNE
- PyLEMS
- PyLEMS_NeuroML2
- jLEMS
- jNeuroML
- "jNeuroML:v0.12.3"
- jNeuroML_Brian2
- jNeuroML_EDEN
- "jNeuroML_NEURON:8.2.7"
- jNeuroML_NetPyNE
- jNeuroML_PyNN_NEURON
- jNeuroML_validate
- jNeuroML_validatev1
- jNeuroML_XPP
- Py_neuroConstruct
- pyNeuroML
- pyNeuroML_validate_sbml
- pyNEURON_XPP_LEMS
- jNeuroML_Moose
- MOOSE:3.1.5
- XPP
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install OMV
run: |
pip install .
pip install scipy sympy matplotlib "cython<3.1.0" pandas tables
#sudo apt install octave
sudo apt-get install -y subversion # for neuroConstruct full install...
- name: Install numpy < 2 if necessary...
run: |
if [[ ${{ matrix.engine }} == *"MOOSE"* ]] || [[ ${{ matrix.engine }} == *"Moose"* ]]; then pip install "numpy<2" ; fi ;
pip list
- name: Run OMV tests on engine ${{ matrix.engine }}
run: |
# Not yet checked: Octave, genesis
omv all -V --engine=${{ matrix.engine }}
- name: OMV final version info
run: |
omv list -V # list installed engines
env
pip list