Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
java: [ '8', '11', '16', '17', '19', '21' ]
runs-on: [ubuntu-latest, windows-latest, macos-latest, macos-13 ]
runs-on: [ubuntu-latest, windows-2022, macos-latest ]
exclude:
- runs-on: macos-latest
java: "8"
Expand Down Expand Up @@ -51,8 +51,18 @@ jobs:
echo Set up additional folders...
ls


- name: Test subversion on windows
if: ${{ contains(matrix.runs-on, 'windows') }}
shell: pwsh
run: |
choco install svn
echo "C:\Program Files (x86)\Subversion\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
refreshenv
svn --version

- name: Build project and run tests (non Win)
if: ${{ matrix.runs-on != 'windows-latest' }}
if: ${{ !contains(matrix.runs-on, 'windows') }}
run: |
./updatenC.sh # Pull other repos, e.g. NeuroML v1 examples from SourceForge
# make
Expand All @@ -63,7 +73,7 @@ jobs:
./nC.sh -v

- name: Build project and run tests (Win)
if: ${{ matrix.runs-on == 'windows-latest' }}
if: ${{ contains(matrix.runs-on, 'windows') }}
run: |
./updatenC.bat # Pull other repos, e.g. NeuroML v1 examples from SourceForge
echo "Everything pulled..."
Expand Down
1 change: 1 addition & 0 deletions osb/checkOsb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ standardGHProject 'muscle_model' 'invertebrate/celegans' 'openworm'
standardGHProject 'JohnsonMailler_MuscleModel' 'invertebrate/celegans' 'openworm'
standardGHProject 'NicolettiEtAl2019_NeuronModels' 'invertebrate/celegans' 'openworm'
standardGHProject 'NicolettiEtAl2024_MN_IN' 'invertebrate/celegans' 'openworm'
standardGHProject 'Worm2D' 'invertebrate/celegans' 'openworm'

standardGHProject 'PyloricNetwork' 'invertebrate/lobster'
standardGHProject 'MorrisLecarModel' 'invertebrate/barnacle'
Expand Down