-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from NeuroML/development
NeuroML 2.2 release
- Loading branch information
Showing
13 changed files
with
201 additions
and
232 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# This workflow will build a Java project with Maven | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | ||
|
||
name: Java CI with Maven | ||
|
||
on: | ||
push: | ||
branches: [ master, development, experimental, osb* ] | ||
pull_request: | ||
branches: [ master, development, experimental, osb* ] | ||
|
||
jobs: | ||
build_and_test: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java: [ '8', '11', '16', '17'] | ||
|
||
name: Test on Java ${{ matrix.Java }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK ${{ matrix.Java }} | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: ${{ matrix.Java }} | ||
distribution: 'temurin' | ||
|
||
- name: Install all | ||
run: | | ||
export main_repo_branch=${{env.main_repo_branch}} | ||
if [[ ${main_repo_branch} != "master" && ${main_repo_branch} != "development" && ${main_repo_branch} != "experimental" && ${main_repo_branch} != *"osb"* ]]; then main_repo_branch=development ; fi | ||
echo Using branch $main_repo_branch | ||
git clone https://github.com/NeuroML/org.neuroml.model.injectingplugin.git | ||
cd org.neuroml.model.injectingplugin | ||
git checkout $main_repo_branch | ||
mvn install | ||
cd .. | ||
git clone https://github.com/NeuroML/NeuroML2.git | ||
cd NeuroML2 | ||
git checkout $main_repo_branch | ||
mvn install | ||
cd .. | ||
git clone https://github.com/LEMS/jLEMS.git | ||
cd jLEMS | ||
git checkout $main_repo_branch | ||
mvn install | ||
cd .. | ||
git clone https://github.com/NeuroML/org.neuroml.model.git | ||
cd org.neuroml.model | ||
git checkout $main_repo_branch | ||
mvn install | ||
cd .. | ||
- name: Test with Maven | ||
run: | | ||
pwd | ||
mvn install | ||
- name: Further tests | ||
run: | | ||
pwd | ||
ls -alt | ||
mvn dependency:tree |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.