Skip to content

Commit ae9a96a

Browse files
committed
match NonlinearSolve for Downstream DI develop
1 parent e5b3399 commit ae9a96a

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/Downstream.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,12 @@ jobs:
4949
# the libs haven't been registered yet.
5050
- name: "Develop the libraries since they haven't been registered yet"
5151
run: |
52-
julia --project=. -e '
53-
using Pkg;
54-
Pkg.develop(map(path ->Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
55-
'
52+
import Pkg
53+
Pkg.Registry.update()
54+
# Install packages present in subdirectories
55+
dev_pks = Pkg.PackageSpec[]
56+
Pkg.develop(map(path -> Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
57+
Pkg.instantiate()
5658
- name: Clone Downstream
5759
uses: actions/checkout@v4
5860
with:
@@ -80,4 +82,4 @@ jobs:
8082
with:
8183
token: ${{ secrets.CODECOV_TOKEN }}
8284
file: lcov.info
83-
fail_ci_if_error: true
85+
fail_ci_if_error: false

0 commit comments

Comments
 (0)