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
2 changes: 1 addition & 1 deletion .github/actions/setup-swig/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
swig_version:
description: 'Swig version to build'
required: false
default: '4.2.0'
default: '4.4.0'

runs:
using: "composite"
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/deploy_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ jobs:
with:
fetch-depth: 20

- name: Set up SWIG
uses: ./.github/actions/setup-swig

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

- name: Create AMICI sdist
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/deploy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ jobs:
with:
fetch-depth: 20

- name: Set up SWIG
uses: ./.github/actions/setup-swig

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

- name: sdist
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/test_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,5 @@ jobs:
pandoc \
&& pip install tox

- name: Set up SWIG
uses: ./.github/actions/setup-swig

- name: Run sphinx
run: tox -e doc
2 changes: 1 addition & 1 deletion scripts/downloadAndBuildSwig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -euo pipefail
SCRIPT_PATH=$(dirname "$BASH_SOURCE")
AMICI_PATH=$(cd "$SCRIPT_PATH/.." && pwd)

swig_version="${1:-"4.3.1"}"
swig_version="${1:-"4.4.0"}"
SWIG_ARCHIVE="swig-${swig_version}.tar.gz"
SWIG_URL="http://downloads.sourceforge.net/project/swig/swig/swig-${swig_version}/${SWIG_ARCHIVE}"
SWIG_DIR="swig-${swig_version}"
Expand Down
Loading