File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 46
46
# force it to use this PR's version of the package
47
47
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
48
48
Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceCore")))
49
- # Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceOffsetArrays")))
50
- # Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceStaticArrays")))
49
+ Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceOffsetArrays")))
50
+ Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceStaticArrays")))
51
51
Pkg.update()
52
52
Pkg.test() # resolver may fail with test time deps
53
53
catch err
Original file line number Diff line number Diff line change @@ -26,19 +26,19 @@ jobs:
26
26
version : ${{ matrix.julia-version }}
27
27
arch : x64
28
28
- uses : julia-actions/julia-buildpkg@latest
29
- - name : Clone Downstream
29
+ - name : Clone LoopVectorization
30
30
uses : actions/checkout@v2
31
31
with :
32
32
repository : ${{ matrix.package.user }}/${{ matrix.package.repo }}
33
- path : downstream
34
- - name : Load this and run the downstream tests
35
- shell : julia --color=yes --project=downstream {0}
33
+ path : loopvec
34
+ - name : Load this and run the LoopVectorization tests
35
+ shell : julia --color=yes --project=loopvec {0}
36
36
run : |
37
37
using Pkg
38
38
try
39
39
# force it to use this PR's version of the package
40
40
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
41
- # Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceCore")))
41
+ Pkg.develop(Pkg.PackageSpec(path=joinpath(pwd(), "lib", "ArrayInterfaceCore")))
42
42
Pkg.update()
43
43
Pkg.test() # resolver may fail with test time deps
44
44
catch err
You can’t perform that action at this time.
0 commit comments