Skip to content
Draft
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
4 changes: 4 additions & 0 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@ jobs:
uses: "SciML/.github/.github/workflows/downgrade.yml@v1"
with:
mode: "deps"
# ODEInterface 0.4.8 compiles its Fortran solvers from source via
# gfortran in deps/build.jl; without it the build errors with
# "Currently only gfortran is supported."
apt-packages: "gfortran"
secrets: "inherit"
6 changes: 6 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ concurrency:
jobs:
tests:
uses: "SciML/.github/.github/workflows/grouped-tests.yml@v1"
with:
# ODEInterface 0.4.8 builds the Fortran solvers from source via gfortran
# in its deps/build.jl; without it the build errors with
# "Currently only gfortran is supported." The jll-based 0.5.x path that
# needs no gfortran is unusable until ODEInterface 0.5.1 is registered.
apt-packages: "gfortran"
secrets: "inherit"
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ExplicitImports = "1"
FunctionWrappers = "1.1.3"
ModelingToolkit = "9, 10, 11"
NonlinearSolve = "3, 4"
ODEInterface = "0.5"
ODEInterface = "0.4.8"
ODEProblemLibrary = "1"
Reexport = "1.2.2"
SafeTestsets = "0.0.1, 0.1"
Expand Down
Loading