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 9c89cbd
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 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
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
ColorSchemes = " 3.19"
ColorSchemes = "≥3.19"
Colors = "0.12"
Dates = "1"
Printf = "1"
Random = "1"
Dates = "<0.0.1, 1"
Printf = "<0.0.1, 1"
Random = "<0.0.1, 1"
Reexport = "1"
PrecompileTools = "1"
Statistics = "1"
Statistics = "<0.0.1,1"
julia = "1.6"

[extras]
Expand Down
12 changes: 10 additions & 2 deletions test/downstream.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ deploy_Plots() = begin
tmpd = mktempdir()
Plots_jl = joinpath(tmpd, "Plots.jl")
Plots_toml = joinpath(Plots_jl, "Project.toml")

registries = joinpath(first(DEPOT_PATH), "registries")
general = joinpath(registries, "General")
isdir(general) || run(setenv(`tar -xf General.tar.gz`; dir=registries))
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 +85,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 +108,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 9c89cbd

Please sign in to comment.