We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 187d08e commit b413f7cCopy full SHA for b413f7c
.buildkite/pipeline.yml
@@ -34,8 +34,10 @@ steps:
34
Pkg.add(; url="https://github.com/leios/oneAPI.jl/", rev="GtK_transition")
35
36
println("+++ :julia: Building support library")
37
- import oneAPI
38
- include(joinpath(dirname(pathof(oneAPI)), "..")*"/deps/build_ci.jl")
+ filename = Base.find_package("oneAPI")
+ filename = filename[1:findfirst("oneAPI", filename)[1]-1]
39
+ filename *= "/deps/build_ci.jl"
40
+ include(filename)
41
Pkg.activate()
42
43
println("+++ :julia: Running tests")
0 commit comments