Skip to content

Commit

Permalink
debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Apr 7, 2024
1 parent fa1e322 commit 80c0d97
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions ci/downstream.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,19 @@ fake_supported_version!(path) = begin
end

test_stable(pkg::String) = begin
Pkg.activate(tempdir())
tmpd = mktempdir()

for dn in ("RecipesBase", "RecipesPipeline", "PlotsBase", "")
Pkg.develop(; path = joinpath(@__DIR__, "..", dn))
end
Pkg.activate(; temp = true)
mktempdir() do
for dn in ("RecipesBase", "RecipesPipeline", "PlotsBase", "")
Pkg.develop(; path = joinpath(@__DIR__, "..", dn))
end

pkg_dir = joinpath(tmpd, "$pkg.jl")
failsafe_clone_checkout(pkg_dir, "https://github.com/JuliaPlots/$pkg.jl")
fake_supported_version!(pkg_dir)
pkg_dir = joinpath(tmpd, "$pkg.jl")
failsafe_clone_checkout(pkg_dir, "https://github.com/JuliaPlots/$pkg.jl")
fake_supported_version!(pkg_dir)

Pkg.develop(; path = pkg_dir)
Pkg.test(pkg)
Pkg.develop(; path = pkg_dir)
Pkg.test(pkg)
end
nothing
end

Expand Down

0 comments on commit 80c0d97

Please sign in to comment.