Skip to content

Commit fd5783c

Browse files
committed
move devs to run step
1 parent a4fe6df commit fd5783c

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/Downstream.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,6 @@ jobs:
3535
version: ${{ matrix.julia-version }}
3636
arch: x64
3737
- uses: julia-actions/julia-buildpkg@latest
38-
- name: Setup ArrayInterface
39-
shell: julia --color=yes {0}
40-
run: |
41-
using Pkg
42-
Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceCore")))
43-
Pkg.develop(Pkg.PackageSpec(path=joinpath("."))) # ArrayInterface
44-
Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceOffsetArrays")))
45-
Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceStaticArrays")))
46-
Pkg.build()
4738
- name: Clone Downstream
4839
uses: actions/checkout@v2
4940
with:
@@ -56,6 +47,9 @@ jobs:
5647
try
5748
# force it to use this PR's version of the package
5849
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
50+
Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceCore")))
51+
Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceOffsetArrays")))
52+
Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceStaticArrays")))
5953
Pkg.update()
6054
Pkg.test() # resolver may fail with test time deps
6155
catch err

0 commit comments

Comments
 (0)