Skip to content

Commit cfefb6d

Browse files
authored
Merge pull request #1751 from firedrakeproject/rckirby/install-irksome
Rckirby/install irksome
2 parents ffa9102 + d90d97b commit cfefb6d

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pipeline {
2626
sh 'mkdir tmp'
2727
dir('tmp') {
2828
timestamps {
29-
sh '../scripts/firedrake-install --disable-ssh --minimal-petsc --slepc --documentation-dependencies --install thetis --install gusto --install icepack --no-package-manager || (cat firedrake-install.log && /bin/false)'
29+
sh '../scripts/firedrake-install --disable-ssh --minimal-petsc --slepc --documentation-dependencies --install thetis --install gusto --install icepack --install irksome --no-package-manager || (cat firedrake-install.log && /bin/false)'
3030
}
3131
}
3232
}

scripts/firedrake-install

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ firedrake_apps = {
2525
"git+ssh://github.com/thetisproject/thetis#egg=thetis"),
2626
"icepack": ("""Glacier and ice sheet model. https://icepack.github.io""",
2727
"git+ssh://github.com/icepack/icepack.git#egg=icepack"),
28+
"irksome": ("""Implicit Runge-Kutta methods. https://github.com/firedrakeproject/Irksome/""",
29+
"git+ssh://github.com/firedrakeproject/Irksome.git#egg=Irksome"),
2830
}
2931

3032

tests/regression/test_import_applications.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55

66

7-
@pytest.fixture(params=["gusto", "thetis"])
7+
@pytest.fixture(params=["gusto", "thetis", "irksome", "icepack"])
88
def app(request):
99
return request.param
1010

0 commit comments

Comments
 (0)