Skip to content

Commit

Permalink
update stable
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Dec 25, 2023
1 parent ca9d075 commit d7e6af1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
matrix:
version:
- '1.6' # LTS (lowest supported `julia` version declared in `Project.toml`)
- '1.8' # latest stable
- '1' # latest stable
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [x64, x86]
exclude:
Expand Down
8 changes: 6 additions & 2 deletions test/downstream.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ deploy_Plots() = begin
tmpd = mktempdir()
Plots_jl = joinpath(tmpd, "Plots.jl")
Plots_toml = joinpath(Plots_jl, "Project.toml")
readdir(first(DEPOT_PATH)) |> println
readdir(joinpath(first(DEPOT_PATH), "registries", )) |> println
readdir(joinpath(first(DEPOT_PATH), "registries", "General")) |> println

versions = joinpath(
first(DEPOT_PATH),
"registries",
Expand Down Expand Up @@ -77,7 +81,7 @@ deploy_Makie(extended = false) = begin
if extended # too costly ?
Pkg.develop(path = joinpath(tmpd, "Makie.jl", "ReferenceTests"))
Pkg.develop(path = joinpath(tmpd, "Makie.jl", "CairoMakie"))
Pkg.develop(path = joinpath(tmpd, "Makie.jl", "GLMakie"))
# Pkg.develop(path = joinpath(tmpd, "Makie.jl", "GLMakie"))
end
Pkg.status(["PlotUtils", "MakieCore", "Makie"])
nothing
Expand All @@ -100,5 +104,5 @@ extended = tryparse(Bool, get(ENV, "CI", "false")) === false # extended test lo
deploy_Makie(extended)
@testset "downstream Makie" begin
Pkg.test("Makie")
extended && Pkg.test(["CairoMakie", "GLMakie"])
extended && Pkg.test("CairoMakie")
end

0 comments on commit d7e6af1

Please sign in to comment.