Add export of new PyNN to NeuroML #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous builds | |
on: | |
push: | |
branches: [ master, development, experimental, test*, pynest* ] | |
pull_request: | |
branches: [ master, development, experimental, test*, pynest* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ 3.9, "3.10" ] | |
engine: | |
# - "NEST:2.18.0" # No longer supported... | |
# - "NEST:2.20.0" # No longer supported... | |
- "NEST:3.1" | |
- "NEST:3.3" | |
- NEST | |
- "PyNEST:3.4" | |
- "PyNEST:3.5" | |
- "PyNEST:3.1" | |
- PyNEST | |
# - "PyNEST:2.20.0" # No longer supported... | |
- PyNN_Nest | |
- jNeuroML_validate | |
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 git+https://github.com/OpenSourceBrain/osb-model-validation | |
pip install scipy sympy matplotlib cython pandas tables | |
pip install 'numpy<=1.23.0' # see https://github.com/OpenSourceBrain/osb-model-validation/issues/91 | |
- name: Create a small scale network to test for NEST_SLI | |
run: | | |
cd NEST_SLI/test/ | |
./create_small_network_sim.sh | |
ls -alt data | |
cd ../.. | |
./make_tests.sh | |
- name: Run OMV tests on engine ${{ matrix.engine }} | |
run: | | |
omv all -V --engine=${{ matrix.engine }} | |
- name: OMV final version info | |
run: | | |
omv list -V # list installed engines | |
pip list | |
env |