Skip to content

Commit

Permalink
Add defcon as an app (#3373)
Browse files Browse the repository at this point in the history
Co-authored-by: Patrick Farrell <[email protected]>
  • Loading branch information
pefarrell and pefarrell authored Jan 31, 2024
1 parent 8597ec9 commit 8bcf278
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ jobs:
--install irksome \
--install femlium \
--install fascd \
--install defcon \
|| (cat firedrake-install.log && /bin/false)
- name: Install test dependencies
run: |
Expand Down
1 change: 1 addition & 0 deletions docker/Dockerfile.firedrake
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ RUN bash -c "source firedrake/bin/activate; \
--slepc \
--tinyasm \
--install femlium \
--install defcon \
--install fascd \
--install gusto \
--install icepack \
Expand Down
2 changes: 2 additions & 0 deletions scripts/firedrake-install
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ firedrake_apps = {
"git+ssh://github.com/FEMlium/FEMlium.git@main#egg=FEMlium"),
"fascd": ("""Full approximation scheme constraint decomposition solver for variational inequalities. https://bitbucket.org/pefarrell/fascd""",
"git+ssh://bitbucket.org/pefarrell/fascd.git@master#egg=fascd"),
"defcon": ("""Deflated continuation algorithm for bifurcation analysis. https://bitbucket.org/pefarrell/defcon""",
"git+ssh://bitbucket.org/pefarrell/defcon.git@master#egg=defcon"),
}


Expand Down
2 changes: 1 addition & 1 deletion tests/regression/test_import_applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys


@pytest.fixture(params=["gusto", "thetis", "irksome", "icepack", "femlium", "fascd"])
@pytest.fixture(params=["gusto", "thetis", "irksome", "icepack", "femlium", "fascd", "defcon"])
def app(request):
return request.param

Expand Down

0 comments on commit 8bcf278

Please sign in to comment.