Skip to content

Commit

Permalink
Release 0.11.14
Browse files Browse the repository at this point in the history
Merge pull request #1466 from AMICI-dev/release_0.11.14
  • Loading branch information
dweindl authored Mar 16, 2021
2 parents b090fbb + 82c8a48 commit 0913290
Show file tree
Hide file tree
Showing 78 changed files with 3,917 additions and 1,848 deletions.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement, new
assignees: ''

---

**Feature description**
[A clear and concise description of what you would like to have.]

**Motivation/Application**
[Why is this feature useful?]
21 changes: 21 additions & 0 deletions .github/workflows/test_matlab.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Matlab
on: [push, pull_request, workflow_dispatch]

jobs:
matlab:
name: Matlab

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@master
- run: git fetch --prune --unshallow

- run: echo "AMICI_DIR=$(pwd)" >> $GITHUB_ENV

- name: Install MATLAB
uses: matlab-actions/setup-matlab@v0
- name: Run script
uses: matlab-actions/run-command@v0
with:
command: cd matlab; installAMICI; addpath tests; testModels
9 changes: 7 additions & 2 deletions .github/workflows/test_sbml_semantic_test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,14 @@ on:
jobs:
build:
name: SBML Semantic Test Suite

runs-on: ubuntu-20.04

strategy:
fail-fast: false
matrix:
cases: ["1 - 250", "251 - 500", "501 - 750", "751 - 1000",
"1000-1250", "1251-1780"]

steps:
- uses: actions/checkout@v1
with:
Expand All @@ -31,7 +36,7 @@ jobs:
sudo apt-get update \
&& sudo apt-get install -y swig4.0 libatlas-base-dev
- run: AMICI_PARALLEL_COMPILE=2 ./scripts/installAmiciSource.sh
- run: AMICI_PARALLEL_COMPILE=2 ./scripts/run-SBMLTestsuite.sh
- run: AMICI_PARALLEL_COMPILE=2 ./scripts/run-SBMLTestsuite.sh ${{ matrix.cases }}

- name: "Upload artifact: SBML semantic test suite results"
uses: actions/upload-artifact@v1
Expand Down
Loading

0 comments on commit 0913290

Please sign in to comment.