Skip to content

Commit f49c308

Browse files
committed
test: fix more of NonlinearSolve tests
1 parent f37da0a commit f49c308

34 files changed

+756
-764
lines changed

.buildkite/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ steps:
1414
Pkg.Registry.update();
1515
# Install packages present in subdirectories
1616
dev_pks = Pkg.PackageSpec[];
17-
for path in ("lib/SciMLJacobianOperators", "lib/BracketingNonlinearSolve", "lib/NonlinearSolveBase", "lib/SimpleNonlinearSolve")
17+
for path in ("lib/SciMLJacobianOperators", "lib/BracketingNonlinearSolve", "lib/NonlinearSolveBase", "lib/SimpleNonlinearSolve", "lib/NonlinearSolveFirstOrder", "lib/NonlinearSolveSpectralMethods", "lib/NonlinearSolveQuasiNewton")
1818
push!(dev_pks, Pkg.PackageSpec(; path));
1919
end
2020
Pkg.develop(dev_pks);
@@ -42,7 +42,7 @@ steps:
4242
Pkg.Registry.update();
4343
# Install packages present in subdirectories
4444
dev_pks = Pkg.PackageSpec[];
45-
for path in ("lib/NonlinearSolveBase", "lib/BracketingNonlinearSolve")
45+
for path in ("lib/NonlinearSolveBase", "lib/BracketingNonlinearSolve", "lib/SciMLJacobianOperators")
4646
push!(dev_pks, Pkg.PackageSpec(; path))
4747
end
4848
Pkg.develop(dev_pks);

.github/workflows/CI_BracketingNonlinearSolve.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
version:
29-
- "lts"
29+
- "1.10"
3030
- "1"
3131
os:
3232
- ubuntu-latest

.github/workflows/CI_NonlinearSolve.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ on:
1414
- "lib/BracketingNonlinearSolve/**"
1515
- "lib/NonlinearSolveBase/**"
1616
- "lib/SimpleNonlinearSolve/**"
17+
- "lib/NonlinearSolveFirstOrder/**"
18+
- "lib/NonlinearSolveSpectralMethods/**"
19+
- "lib/NonlinearSolveQuasiNewton/**"
1720
push:
1821
branches:
1922
- master
@@ -33,10 +36,9 @@ jobs:
3336
group:
3437
- Core
3538
- Downstream
36-
- Misc
3739
- Wrappers
3840
version:
39-
- "lts"
41+
- "1.10"
4042
- "1"
4143
os:
4244
- ubuntu-latest
@@ -63,7 +65,7 @@ jobs:
6365
Pkg.Registry.update()
6466
# Install packages present in subdirectories
6567
dev_pks = Pkg.PackageSpec[]
66-
for path in ("lib/SciMLJacobianOperators", "lib/BracketingNonlinearSolve", "lib/NonlinearSolveBase", "lib/SimpleNonlinearSolve")
68+
for path in ("lib/SciMLJacobianOperators", "lib/BracketingNonlinearSolve", "lib/NonlinearSolveBase", "lib/SimpleNonlinearSolve", "lib/NonlinearSolveFirstOrder", "lib/NonlinearSolveSpectralMethods", "lib/NonlinearSolveQuasiNewton")
6769
push!(dev_pks, Pkg.PackageSpec(; path))
6870
end
6971
Pkg.develop(dev_pks)
@@ -74,7 +76,7 @@ jobs:
7476
GROUP: ${{ matrix.group }}
7577
- uses: julia-actions/julia-processcoverage@v1
7678
with:
77-
directories: src,ext,lib/SciMLJacobianOperators/src
79+
directories: src,ext,lib/SciMLJacobianOperators/src,lib/BracketingNonlinearSolve/src,lib/NonlinearSolveBase/src,lib/NonlinearSolveBase/ext,lib/SimpleNonlinearSolve/src,lib/NonlinearSolveFirstOrder/src,lib/NonlinearSolveSpectralMethods/src,lib/NonlinearSolveQuasiNewton/src
7880
- uses: codecov/codecov-action@v4
7981
with:
8082
file: lcov.info

.github/workflows/CI_NonlinearSolveBase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
version:
28-
- "lts"
28+
- "1.10"
2929
- "1"
3030
os:
3131
- ubuntu-latest

.github/workflows/CI_NonlinearSolveFirstOrder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
version:
29-
- "lts"
29+
- "1.10"
3030
- "1"
3131
os:
3232
- ubuntu-latest

.github/workflows/CI_NonlinearSolveQuasiNewton.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
version:
29-
- "lts"
29+
- "1.10"
3030
- "1"
3131
os:
3232
- ubuntu-latest

.github/workflows/CI_NonlinearSolveSpectralMethods.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
version:
29-
- "lts"
29+
- "1.10"
3030
- "1"
3131
os:
3232
- ubuntu-latest

.github/workflows/CI_SciMLJacobianOperators.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
version:
27-
- "lts"
27+
- "1.10"
2828
- "1"
2929
os:
3030
- ubuntu-latest

.github/workflows/Downgrade.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
group:
2222
- Core
2323
- Downstream
24-
- Misc
2524
- Wrappers
2625
steps:
2726
- uses: actions/checkout@v4

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ InteractiveUtils = "<0.0.1, 1"
7878
LeastSquaresOptim = "0.8.5"
7979
LineSearch = "0.1.4"
8080
LineSearches = "7.3"
81-
LinearAlgebra = "1.11.0"
81+
LinearAlgebra = "1.10"
8282
LinearSolve = "2.36.1"
8383
MINPACK = "1.2"
8484
MPI = "0.20.22"

0 commit comments

Comments
 (0)