Skip to content

Commit 16ebc14

Browse files
committed
CUDAKernels is now 1.6 only as well
1 parent 0d8ff7d commit 16ebc14

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.ci/develop.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ Pkg.update()
55
root_directory = dirname(@__DIR__)
66

77
kernelabstractions = Pkg.PackageSpec(path = root_directory)
8-
cudakernels = Pkg.PackageSpec(path = joinpath(root_directory, "lib", "CUDAKernels"))
98

109
Pkg.develop(kernelabstractions)
11-
Pkg.develop(cudakernels)
1210
if !(VERSION < v"1.6-")
1311
rockernels = Pkg.PackageSpec(path = joinpath(root_directory, "lib", "ROCKernels"))
1412
Pkg.develop(rockernels)
13+
14+
cudakernels = Pkg.PackageSpec(path = joinpath(root_directory, "lib", "CUDAKernels"))
15+
Pkg.develop(cudakernels)
1516
end
1617
Pkg.build()
1718
Pkg.precompile()

.ci/test.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import Pkg
22

33
pkgs = [
44
"KernelAbstractions",
5-
"CUDAKernels",
65
]
76
if !(VERSION < v"1.6-")
87
push!(pkgs, "ROCKernels")
8+
push!(pkgs, "CUDAKernels")
99
end
1010

1111
Pkg.test(pkgs; coverage = true)

0 commit comments

Comments
 (0)