Skip to content

Commit

Permalink
attempting to get buildkite to run
Browse files Browse the repository at this point in the history
  • Loading branch information
leios authored and u222842 committed Jun 6, 2024
1 parent 3caeece commit 1fd096b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ steps:
println("--- :julia: Instantiating project")
Pkg.develop(; path=pwd())
Pkg.develop(; name="CUDA")
Pkg.add(; url="https://github.com/leios/CUDA.jl/", rev="GtK_trans")
println("+++ :julia: Running tests")
Pkg.test("CUDA"; coverage=true)'
Expand All @@ -31,10 +31,13 @@ steps:
println("--- :julia: Instantiating project")
Pkg.develop(; path=pwd())
Pkg.develop(; name="oneAPI")
Pkg.add(; url="https://github.com/leios/oneAPI.jl/", rev="GtK_transition")
println("+++ :julia: Building support library")
include(joinpath(Pkg.devdir(), "oneAPI", "deps", "build_ci.jl"))
filename = Base.find_package("oneAPI")
filename = filename[1:findfirst("oneAPI.jl", filename)[1]-1]
filename *= "../deps/build_ci.jl"
include(filename)
Pkg.activate()
println("+++ :julia: Running tests")
Expand All @@ -56,7 +59,7 @@ steps:
println("--- :julia: Instantiating project")
Pkg.develop(; path=pwd())
Pkg.develop(; name="Metal")
Pkg.add(; url="https://github.com/leios/Metal.jl/", rev="GtK_transition")
println("+++ :julia: Running tests")
Pkg.test("Metal"; coverage=true)'
Expand Down

0 comments on commit 1fd096b

Please sign in to comment.