Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Apr 7, 2024
1 parent 3dfd800 commit fa1e322
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,14 @@ jobs:
run: |
using Pkg
foreach(path -> Pkg.develop(; path), ("./RecipesBase", "./RecipesPipeline", "./PlotsBase", "."))
Pkg.precompile()
# - uses: julia-actions/julia-buildpkg@latest

- name: Install conda based matplotlib
run: julia --color=yes ci/matplotlib.jl

- name: Run RecipesBase, RecipesPipeline, PlotsBase, Plots tests
- name: Test RecipesBase, RecipesPipeline, PlotsBase, Plots
timeout-minutes: 60
run: |
cmd=(julia --color=yes)
Expand Down
4 changes: 3 additions & 1 deletion ci/downstream.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ failsafe_clone_checkout(path, url) = begin
end
@assert isfile(versions)

stable = maximum(VersionNumber.(keys(TOML.parse(read(versions, String)))))
version_dict = TOML.parse(read(versions, String))
stable = VersionNumber.(keys(version_dict)) |> maximum
tag = LibGit2.GitObject(repo, "v$stable")
hash = string(LibGit2.target(tag))
LibGit2.checkout!(repo, hash)
Expand All @@ -44,6 +45,7 @@ fake_supported_version!(path) = begin
open(toml, "w") do io
TOML.print(io, parsed_toml)
end
print(read(toml, String))
nothing
end

Expand Down

0 comments on commit fa1e322

Please sign in to comment.