File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 35
35
version : ${{ matrix.julia-version }}
36
36
arch : x64
37
37
- 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()
47
38
- name : Clone Downstream
48
39
uses : actions/checkout@v2
49
40
with :
56
47
try
57
48
# force it to use this PR's version of the package
58
49
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")))
59
53
Pkg.update()
60
54
Pkg.test() # resolver may fail with test time deps
61
55
catch err
You can’t perform that action at this time.
0 commit comments