To NEST_VER=3.5, NRN_VER=8.2.2, BRIAN2_VER=2.5.4, PYNN_VER=0.11.0 #13
This file contains hidden or 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: Docker Image CI | |
| on: | |
| push: | |
| branches: [ master, test_pynn* ] | |
| pull_request: | |
| branches: [ master, test_pynn* ] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.runs-on }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runs-on: [ubuntu-latest, macos-13 ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup docker (missing on MacOS) | |
| if: runner.os == 'macos' | |
| run: | | |
| brew install docker colima | |
| colima start | |
| - name: Build the base Docker image | |
| run: | | |
| cd base | |
| ./regenerate.sh | |
| - name: Build the simulation Docker image | |
| run: | | |
| cd simulation | |
| ./generate.sh | |
| - name: Build the simulationx Docker image | |
| run: | | |
| cd simulationx | |
| ./generate.sh | |
| - name: Build the osb Docker image | |
| run: | | |
| cd osb | |
| ./generate.sh | |
| - name: Print info on installed packages | |
| run: | | |
| docker run -t neuralensemble/osb /bin/bash -c "omv list -V" | |
| - name: Print info on docker images | |
| run: | | |
| docker images |