Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Sep 19, 2024
1 parent f97a629 commit 2a541d0
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ steps:
julia -e 'using Pkg
println("--- :julia: Instantiating project")
Pkg.develop(; path=pwd())
Pkg.add(; url="https://github.com/JuliaGPU/CUDA.jl/", rev="tb/gpuarrays_kernelabstractions")
Pkg.develop([PackageSpec(path=pwd()),
PackageSpec(path=joinpath(pwd(), "lib", "GPUArraysCore"))])
Pkg.add(; url="https://github.com/JuliaGPU/CUDA.jl/",
rev="tb/gpuarrays_kernelabstractions")
println("+++ :julia: Running tests")
Pkg.test("CUDA"; coverage=true)'
Expand All @@ -30,8 +32,10 @@ steps:
julia -e 'using Pkg;
println("--- :julia: Instantiating project")
Pkg.develop(; path=pwd())
Pkg.add(; url="https://github.com/JuliaGPU/oneAPI.jl/", rev="tb/gpuarrays_kernelabstractions")
Pkg.develop([PackageSpec(path=pwd()),
PackageSpec(path=joinpath(pwd(), "lib", "GPUArraysCore"))])
Pkg.add(; url="https://github.com/JuliaGPU/oneAPI.jl/",
rev="tb/gpuarrays_kernelabstractions")
println("+++ :julia: Building support library")
oneapi = dirname(dirname(Base.find_package("oneAPI")))
Expand All @@ -56,8 +60,10 @@ steps:
julia -e 'using Pkg;
println("--- :julia: Instantiating project")
Pkg.develop(; path=pwd())
Pkg.add(; url="https://github.com/JuliaGPU/Metal.jl/", rev="tb/gpuarrays_kernelabstractions")
Pkg.develop([PackageSpec(path=pwd()),
PackageSpec(path=joinpath(pwd(), "lib", "GPUArraysCore"))])
Pkg.add(; url="https://github.com/JuliaGPU/Metal.jl/",
rev="tb/gpuarrays_kernelabstractions")
println("+++ :julia: Running tests")
Pkg.test("Metal"; coverage=true)'
Expand Down

0 comments on commit 2a541d0

Please sign in to comment.