Skip to content

Commit 62b2b08

Browse files
committed
dev ArrayInterface for downstream
1 parent 07aefd1 commit 62b2b08

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/Downstream.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,8 @@ jobs:
3838
shell: julia --color=yes {0}
3939
run: |
4040
using Pkg
41-
function dev_subpkg(subpkg)
42-
subpkg_path = joinpath("lib", subpkg)
43-
Pkg.develop(Pkg.PackageSpec(path=subpkg_path))
44-
end
45-
dev_subpkg("ArrayInterfaceCore")
41+
Pkg.develop(Pkg.PackageSpec(path=joinpath("lib", "ArrayInterfaceCore")))
42+
Pkg.develop(Pkg.PackageSpec(path=joinpath("ArrayInterface")))
4643
Pkg.build()
4744
- name: Clone Downstream
4845
uses: actions/checkout@v2
@@ -56,7 +53,6 @@ jobs:
5653
try
5754
# force it to use this PR's version of the package
5855
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
59-
6056
Pkg.update()
6157
Pkg.test() # resolver may fail with test time deps
6258
catch err

0 commit comments

Comments
 (0)