Skip to content

Commit 4cb8f3a

Browse files
committed
different environments for downstream targets
1 parent 31c4f1d commit 4cb8f3a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/Downstream.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ jobs:
4646
# force it to use this PR's version of the package
4747
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
4848
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")))
5151
Pkg.update()
5252
Pkg.test() # resolver may fail with test time deps
5353
catch err

.github/workflows/LoopVecTests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ jobs:
2626
version: ${{ matrix.julia-version }}
2727
arch: x64
2828
- uses: julia-actions/julia-buildpkg@latest
29-
- name: Clone Downstream
29+
- name: Clone LoopVectorization
3030
uses: actions/checkout@v2
3131
with:
3232
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}
3636
run: |
3737
using Pkg
3838
try
3939
# force it to use this PR's version of the package
4040
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")))
4242
Pkg.update()
4343
Pkg.test() # resolver may fail with test time deps
4444
catch err

0 commit comments

Comments
 (0)