-
Notifications
You must be signed in to change notification settings - Fork 24
72 lines (62 loc) · 2.04 KB
/
ci.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Java CI with Ant
on:
push:
branches: [ master, development, experimental ]
pull_request:
branches: [ master, development, experimental ]
jobs:
build_and_test:
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
java: [ '8', '11', '16', '17', '19', '21' ]
runs-on: [ubuntu-latest, windows-latest, macos-latest, macos-12 ]
exclude:
- runs-on: macos-latest
java: "8"
- runs-on: macos-latest
java: "16"
name: Test on Java ${{ matrix.Java }} on ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.Java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.Java }}
distribution: 'adopt'
- name: Install SVN on macos-latest
if: ${{ matrix.runs-on == 'macos-latest' }}
run: |
brew install subversion
- name: Set up env
run: |
mkdir temp
# Get one OSB project required for running tests
mkdir osb/cerebellum
mkdir osb/cerebellum/cerebellar_granule_cell
git clone https://github.com/OpenSourceBrain/GranuleCell.git osb/cerebellum/cerebellar_granule_cell/GranuleCell
echo Set up additional folders...
ls
- name: Build project and run tests (non Win)
if: ${{ matrix.runs-on != 'windows-latest' }}
run: |
./updatenC.sh # Pull other repos, e.g. NeuroML v1 examples from SourceForge
# make
./nC.sh -make
# Rebuild & perform a number of tests with ant
ant testcore
# Print the version info
./nC.sh -v
- name: Build project and run tests (Win)
if: ${{ matrix.runs-on == 'windows-latest' }}
run: |
./updatenC.bat # Pull other repos, e.g. NeuroML v1 examples from SourceForge
echo "Everything pulled..."
# make
./nC.bat -make
# Rebuild & perform a number of tests with ant
ant testcore
# Print the version info
./nC.bat -v
shell: bash