Skip to content

Commit 1fd096b

Browse files
leiosu222842
authored andcommitted
attempting to get buildkite to run
1 parent 3caeece commit 1fd096b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.buildkite/pipeline.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ steps:
1010
1111
println("--- :julia: Instantiating project")
1212
Pkg.develop(; path=pwd())
13-
Pkg.develop(; name="CUDA")
13+
Pkg.add(; url="https://github.com/leios/CUDA.jl/", rev="GtK_trans")
1414
1515
println("+++ :julia: Running tests")
1616
Pkg.test("CUDA"; coverage=true)'
@@ -31,10 +31,13 @@ steps:
3131
3232
println("--- :julia: Instantiating project")
3333
Pkg.develop(; path=pwd())
34-
Pkg.develop(; name="oneAPI")
34+
Pkg.add(; url="https://github.com/leios/oneAPI.jl/", rev="GtK_transition")
3535
3636
println("+++ :julia: Building support library")
37-
include(joinpath(Pkg.devdir(), "oneAPI", "deps", "build_ci.jl"))
37+
filename = Base.find_package("oneAPI")
38+
filename = filename[1:findfirst("oneAPI.jl", filename)[1]-1]
39+
filename *= "../deps/build_ci.jl"
40+
include(filename)
3841
Pkg.activate()
3942
4043
println("+++ :julia: Running tests")
@@ -56,7 +59,7 @@ steps:
5659
5760
println("--- :julia: Instantiating project")
5861
Pkg.develop(; path=pwd())
59-
Pkg.develop(; name="Metal")
62+
Pkg.add(; url="https://github.com/leios/Metal.jl/", rev="GtK_transition")
6063
6164
println("+++ :julia: Running tests")
6265
Pkg.test("Metal"; coverage=true)'

0 commit comments

Comments
 (0)