From 923a372d034beefd16ec86f258c35c3062f54e20 Mon Sep 17 00:00:00 2001 From: Tim Besard Date: Fri, 27 Oct 2023 10:29:48 +0200 Subject: [PATCH] Instantiate before inspecting dependencies. The manifest isn't guaranteed to exist, now that we don't commit it. --- deps/build_ci.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/deps/build_ci.jl b/deps/build_ci.jl index 96572e9b..831872c8 100644 --- a/deps/build_ci.jl +++ b/deps/build_ci.jl @@ -17,6 +17,7 @@ if isdir(joinpath(@__DIR__), "..", ".git") # find out which version of oneAPI_Support_jll we are using Pkg.activate(joinpath(@__DIR__, "..")) + Pkg.instantiate() deps = collect(values(Pkg.dependencies())) filter!(deps) do dep dep.name == "oneAPI_Support_jll"