From 79c944fe226ba3c7abc58183e40d445870e3bd1c Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 08:10:10 +0200 Subject: [PATCH 01/15] add sources section --- GraphRecipes/Project.toml | 4 ++++ PlotsBase/Project.toml | 5 +++++ Project.toml | 7 +++---- RecipesPipeline/Project.toml | 3 +++ StatsPlots/Project.toml | 5 +++++ 5 files changed, 20 insertions(+), 4 deletions(-) diff --git a/GraphRecipes/Project.toml b/GraphRecipes/Project.toml index 7a4b9fed3..d1e6ead8d 100644 --- a/GraphRecipes/Project.toml +++ b/GraphRecipes/Project.toml @@ -45,3 +45,7 @@ VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92" [targets] test = ["GR", "Gtk", "ImageMagick", "LinearAlgebra", "Logging", "Markdown", "PlotsBase", "Random", "SparseArrays", "StableRNGs", "Test", "VisualRegressionTests"] + +[sources] +PlotsBase = { path = "../PlotsBase" } +RecipesBase = { path = "../RecipesBase" } diff --git a/PlotsBase/Project.toml b/PlotsBase/Project.toml index 9e0364786..a7da6461a 100644 --- a/PlotsBase/Project.toml +++ b/PlotsBase/Project.toml @@ -149,3 +149,8 @@ VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92" [targets] test = ["Aqua", "Colors", "Contour", "Distributions", "FileIO", "FilePathsBase", "FreeType", "Gaston", "GeometryBasics", "GR", "Gtk", "HDF5", "Images", "Latexify", "LaTeXStrings", "LibGit2", "OffsetArrays", "PGFPlotsX", "PlotlyJS", "PlotlyKaleido", "PythonPlot", "RDatasets", "SentinelArrays", "StableRNGs", "StaticArrays", "Test", "TestImages", "UnicodePlots", "Unitful", "UnitfulLatexify", "VisualRegressionTests"] + +[sources] +PlotThemes = { path = "../PlotThemes" } +RecipesBase = { path = "../RecipesBase" } +RecipesPipeline = { path = "../RecipesPipeline" } diff --git a/Project.toml b/Project.toml index c6cbfb680..222d63062 100644 --- a/Project.toml +++ b/Project.toml @@ -8,15 +8,11 @@ version = "2.0.0" [deps] GR = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71" PlotsBase = "c52230a3-c5da-43a3-9e85-260fcdfdc737" -RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" -RecipesPipeline = "01d81517-befc-4cb6-b9ec-a95719d0359c" Reexport = "189a3867-3050-52da-a836-e630ba90ab69" [compat] GR = "0.73" PlotsBase = "0.1" -RecipesBase = "1" -RecipesPipeline = "1" Reexport = "1" julia = "1.10" @@ -27,3 +23,6 @@ UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228" [targets] test = ["PythonPlot", "Test", "UnicodePlots"] + +[sources] +PlotsBase = { path = "PlotsBase" } diff --git a/RecipesPipeline/Project.toml b/RecipesPipeline/Project.toml index aed9a7a06..3e89d3435 100644 --- a/RecipesPipeline/Project.toml +++ b/RecipesPipeline/Project.toml @@ -24,3 +24,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] test = ["BenchmarkTools", "StableRNGs", "Test"] + +[sources] +RecipesBase = { path = "../RecipesBase" } diff --git a/StatsPlots/Project.toml b/StatsPlots/Project.toml index bf90fbe94..339eba2d5 100644 --- a/StatsPlots/Project.toml +++ b/StatsPlots/Project.toml @@ -49,3 +49,8 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] test = ["GR", "Interact", "NaNMath", "PlotsBase", "RDatasets", "StableRNGs", "Test"] + +[sources] +PlotsBase = { path = "../PlotsBase" } +RecipesBase = { path = "../RecipesBase" } +RecipesPipeline = { path = "../RecipesPipeline" } From b8b7bf11ff7a6a1259ce4c21716de04dcdaa509c Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 08:21:35 +0200 Subject: [PATCH 02/15] fix legend position example --- .github/workflows/reference_images.yml | 16 +++------------- PlotsBase/src/examples.jl | 10 ++++++---- 2 files changed, 9 insertions(+), 17 deletions(-) diff --git a/.github/workflows/reference_images.yml b/.github/workflows/reference_images.yml index dd7eb14ac..b8c16d90f 100644 --- a/.github/workflows/reference_images.yml +++ b/.github/workflows/reference_images.yml @@ -5,7 +5,7 @@ on: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: @@ -13,18 +13,8 @@ jobs: token: ${{ secrets.PLOTS_REFIMAGES_TOKEN }} - uses: julia-actions/setup-julia@latest with: - version: "1" - - name: Cache artifacts - uses: actions/cache@v4 - env: - cache-name: cache-artifacts - with: - path: ~/.julia/artifacts - key: ${{runner.os}}-test-${{env.cache-name}}-${{hashFiles('**/Project.toml')}} - restore-keys: | - ${{runner.os}}-test-${{env.cache-name}}- - ${{runner.os}}-test- - ${{runner.os}}- + version: 1 + - uses: julia-actions/cache@v2 - name: Run Plots tests env: PLOTSBASE_TEST_PACKAGES: GR diff --git a/PlotsBase/src/examples.jl b/PlotsBase/src/examples.jl index 75017dc06..46e12a4a1 100644 --- a/PlotsBase/src/examples.jl +++ b/PlotsBase/src/examples.jl @@ -1155,22 +1155,22 @@ const _examples = PlotExample[ plot( x, - sin.(x), + sin.(x); xaxis = "common X label", yaxis = "Y label 1", color = :red, - title = "twinx"; + title = "twinx", kw..., ) pl = plot!(twinx(), x, 2cos.(x), yaxis = "Y label 2"; kw...) plot( x, - cos.(x), + cos.(x); xaxis = "X label 1", yaxis = "common Y label", color = :red, - title = "twiny"; + title = "twiny", kw..., ) pr = plot!(twiny(), 2x, cos.(2x), xaxis = "X label 2"; kw...) @@ -1199,6 +1199,7 @@ const _examples = PlotExample[ marker = :circle, ticks = :none, leg_title = leg, + label = :auto, leg, kw..., ), @@ -1231,6 +1232,7 @@ const _examples = PlotExample[ marker = :circle, ticks = :none, leg_title = leg, + label = :auto, leg = leg isa Symbol ? Symbol(:outer, leg) : :none, kw..., ), From 88f646423a0296a18a5827d5d97280525b840a79 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 08:29:35 +0200 Subject: [PATCH 03/15] remove dev --- .github/workflows/ci.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02a38ba55..d517f5391 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,22 +64,6 @@ jobs: - uses: julia-actions/cache@v2 - - name: Develop all Plots packages - env: - JULIA_PKG_PRECOMPILE_AUTO: 0 - shell: julia --color=yes {0} - run: | - using Pkg - Pkg.develop([ - (; path="./RecipesBase"), - (; path="./RecipesPipeline"), - (; path="./PlotThemes"), - (; path="./PlotsBase"), - (; path="./GraphRecipes"), - (; path="./StatsPlots"), - (; path="."), - ]) - - name: Install conda based matplotlib env: JULIA_PKG_PRECOMPILE_AUTO: 0 @@ -88,7 +72,7 @@ jobs: - name: Test all Plots packages timeout-minutes: 60 run: | - cmd=(julia --color=yes) + cmd=(julia --color=yes --project=@.) if [ "$RUNNER_OS" == "Linux" ]; then cmd=(xvfb-run ${cmd[@]}) fi From 77c0ae2a335702a5a563b4ac226425705d6a1384 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 08:33:30 +0200 Subject: [PATCH 04/15] update flags --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d517f5391..48fb6c7b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: - name: Test all Plots packages timeout-minutes: 60 run: | - cmd=(julia --color=yes --project=@.) + cmd=(julia --color=yes --depwarn=yes --project=@.) if [ "$RUNNER_OS" == "Linux" ]; then cmd=(xvfb-run ${cmd[@]}) fi From c16b239d3e95ca6b56a06fc688c6cd901bf792a1 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 08:38:04 +0200 Subject: [PATCH 05/15] update --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48fb6c7b1..f490fd866 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,10 @@ jobs: cmd=(xvfb-run ${cmd[@]}) fi echo ${cmd[@]} - ${cmd[@]} -e 'using Pkg; Pkg.test([ + ${cmd[@]} -e 'using Pkg + foreach(println, readdir()) + Pkg.instantiate() + Pkg.test([ "RecipesBase", "RecipesPipeline", "PlotThemes", From f2e988f19f7cfe70801f42034554589629efc0e9 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 08:43:21 +0200 Subject: [PATCH 06/15] upd --- .github/workflows/ci.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f490fd866..3b7617d23 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: - os: ubuntu-latest experimental: true version: 'pre' # upcoming julia version (`alpha`, `beta` or `rc`) - - os: macOS-latest + - os: macos-latest arch: aarch64 version: '1' experimental: false @@ -69,10 +69,21 @@ jobs: JULIA_PKG_PRECOMPILE_AUTO: 0 run: julia --color=yes ci/matplotlib.jl - - name: Test all Plots packages + - name: Develop downstream packages + env: + JULIA_PKG_PRECOMPILE_AUTO: 0 + shell: julia --project=@. --color=yes {0} + run: | + using Pkg + Pkg.develop([ + (; path="./GraphRecipes"), + (; path="./StatsPlots"), + ]) + + - name: Test Plots stack timeout-minutes: 60 run: | - cmd=(julia --color=yes --depwarn=yes --project=@.) + cmd=(julia --project=@. --color=yes --depwarn=yes) if [ "$RUNNER_OS" == "Linux" ]; then cmd=(xvfb-run ${cmd[@]}) fi From 7fda25c0dbea9d530d8ef049cc0624f823dc33b0 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 08:46:10 +0200 Subject: [PATCH 07/15] upd --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b7617d23..0c75eb4c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,6 +75,8 @@ jobs: shell: julia --project=@. --color=yes {0} run: | using Pkg + foreach(println, readdir()) + Pkg.instantiate() Pkg.develop([ (; path="./GraphRecipes"), (; path="./StatsPlots"), @@ -89,8 +91,6 @@ jobs: fi echo ${cmd[@]} ${cmd[@]} -e 'using Pkg - foreach(println, readdir()) - Pkg.instantiate() Pkg.test([ "RecipesBase", "RecipesPipeline", From 9e2e6bff31a672006920dcbd0209ff9e9b03c87f Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 08:48:36 +0200 Subject: [PATCH 08/15] restore coverage --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c75eb4c5..cb3483311 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,11 +101,9 @@ jobs: "Plots", ]; coverage=true)' - uses: julia-actions/julia-processcoverage@latest - if: startsWith(matrix.os, 'ubuntu') with: directories: RecipesBase/src,RecipesPipeline/src,PlotsBase/src,src,GraphRecipes/src,StatsPlots/src,PlotThemes/src - uses: codecov/codecov-action@v5 - if: startsWith(matrix.os, 'ubuntu') with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: false From 71225857b10bf48e2d88ebaad66fb329d387c8aa Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 09:17:50 +0200 Subject: [PATCH 09/15] upd --- GraphRecipes/Project.toml | 4 ---- PlotsBase/Project.toml | 5 ----- Project.toml | 13 ++++++++++--- RecipesPipeline/Project.toml | 3 --- StatsPlots/Project.toml | 5 ----- 5 files changed, 10 insertions(+), 20 deletions(-) diff --git a/GraphRecipes/Project.toml b/GraphRecipes/Project.toml index d1e6ead8d..7a4b9fed3 100644 --- a/GraphRecipes/Project.toml +++ b/GraphRecipes/Project.toml @@ -45,7 +45,3 @@ VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92" [targets] test = ["GR", "Gtk", "ImageMagick", "LinearAlgebra", "Logging", "Markdown", "PlotsBase", "Random", "SparseArrays", "StableRNGs", "Test", "VisualRegressionTests"] - -[sources] -PlotsBase = { path = "../PlotsBase" } -RecipesBase = { path = "../RecipesBase" } diff --git a/PlotsBase/Project.toml b/PlotsBase/Project.toml index a7da6461a..9e0364786 100644 --- a/PlotsBase/Project.toml +++ b/PlotsBase/Project.toml @@ -149,8 +149,3 @@ VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92" [targets] test = ["Aqua", "Colors", "Contour", "Distributions", "FileIO", "FilePathsBase", "FreeType", "Gaston", "GeometryBasics", "GR", "Gtk", "HDF5", "Images", "Latexify", "LaTeXStrings", "LibGit2", "OffsetArrays", "PGFPlotsX", "PlotlyJS", "PlotlyKaleido", "PythonPlot", "RDatasets", "SentinelArrays", "StableRNGs", "StaticArrays", "Test", "TestImages", "UnicodePlots", "Unitful", "UnitfulLatexify", "VisualRegressionTests"] - -[sources] -PlotThemes = { path = "../PlotThemes" } -RecipesBase = { path = "../RecipesBase" } -RecipesPipeline = { path = "../RecipesPipeline" } diff --git a/Project.toml b/Project.toml index 222d63062..13816ef44 100644 --- a/Project.toml +++ b/Project.toml @@ -7,12 +7,22 @@ version = "2.0.0" [deps] GR = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71" +GraphRecipes = "bd48cda9-67a9-57be-86fa-5b3c104eda73" PlotsBase = "c52230a3-c5da-43a3-9e85-260fcdfdc737" +RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" +RecipesPipeline = "01d81517-befc-4cb6-b9ec-a95719d0359c" Reexport = "189a3867-3050-52da-a836-e630ba90ab69" +[sources] +PlotsBase = {path = "PlotsBase"} +RecipesBase = {path = "RecipesBase"} +RecipesPipeline = {path = "RecipesPipeline"} + [compat] GR = "0.73" PlotsBase = "0.1" +RecipesBase = "1" +RecipesPipeline = "1" Reexport = "1" julia = "1.10" @@ -23,6 +33,3 @@ UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228" [targets] test = ["PythonPlot", "Test", "UnicodePlots"] - -[sources] -PlotsBase = { path = "PlotsBase" } diff --git a/RecipesPipeline/Project.toml b/RecipesPipeline/Project.toml index 3e89d3435..aed9a7a06 100644 --- a/RecipesPipeline/Project.toml +++ b/RecipesPipeline/Project.toml @@ -24,6 +24,3 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] test = ["BenchmarkTools", "StableRNGs", "Test"] - -[sources] -RecipesBase = { path = "../RecipesBase" } diff --git a/StatsPlots/Project.toml b/StatsPlots/Project.toml index 339eba2d5..bf90fbe94 100644 --- a/StatsPlots/Project.toml +++ b/StatsPlots/Project.toml @@ -49,8 +49,3 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] test = ["GR", "Interact", "NaNMath", "PlotsBase", "RDatasets", "StableRNGs", "Test"] - -[sources] -PlotsBase = { path = "../PlotsBase" } -RecipesBase = { path = "../RecipesBase" } -RecipesPipeline = { path = "../RecipesPipeline" } From 0bad499052922fc8ca58c66be8e8a482ea60b271 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 09:18:46 +0200 Subject: [PATCH 10/15] upd --- Project.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Project.toml b/Project.toml index 13816ef44..91006521a 100644 --- a/Project.toml +++ b/Project.toml @@ -7,7 +7,6 @@ version = "2.0.0" [deps] GR = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71" -GraphRecipes = "bd48cda9-67a9-57be-86fa-5b3c104eda73" PlotsBase = "c52230a3-c5da-43a3-9e85-260fcdfdc737" RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" RecipesPipeline = "01d81517-befc-4cb6-b9ec-a95719d0359c" From 51e3b772ac9895f847418cd7198de5b8df5053b6 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 09:42:17 +0200 Subject: [PATCH 11/15] update --- .github/workflows/ci.yml | 4 +++- Project.toml | 3 +++ docs/make.jl | 6 +----- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb3483311..a26154e70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,9 +75,11 @@ jobs: shell: julia --project=@. --color=yes {0} run: | using Pkg - foreach(println, readdir()) Pkg.instantiate() Pkg.develop([ + (; path="./RecipesBase"), # compat for LTS, remove later + (; path="./RecipesPipeline"), # compat for LTS, remove later + (; path="./PlotThemes"), # compat for LTS, remove later (; path="./GraphRecipes"), (; path="./StatsPlots"), ]) diff --git a/Project.toml b/Project.toml index 91006521a..b905339a4 100644 --- a/Project.toml +++ b/Project.toml @@ -8,18 +8,21 @@ version = "2.0.0" [deps] GR = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71" PlotsBase = "c52230a3-c5da-43a3-9e85-260fcdfdc737" +PlotThemes = "ccf2f8ad-2431-5c83-bf29-c5338b663b6a" RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" RecipesPipeline = "01d81517-befc-4cb6-b9ec-a95719d0359c" Reexport = "189a3867-3050-52da-a836-e630ba90ab69" [sources] PlotsBase = {path = "PlotsBase"} +PlotThemes = {path = "PlotThemes"} RecipesBase = {path = "RecipesBase"} RecipesPipeline = {path = "RecipesPipeline"} [compat] GR = "0.73" PlotsBase = "0.1" +PlotThemes = "3" RecipesBase = "1" RecipesPipeline = "1" Reexport = "1" diff --git a/docs/make.jl b/docs/make.jl index 1811340ef..f2e7dac1f 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,12 +1,8 @@ using Pkg Base.get_bool_env("PLOTS_DOCS_DEV", false) && Pkg.develop([ - (; path="../RecipesBase"), - (; path="../RecipesPipeline"), - (; path="../PlotThemes"), - (; path="../PlotsBase"), + (; path=".."), (; path="../GraphRecipes"), (; path="../StatsPlots"), - (; path=".."), ]) # oneliner debug PLOTS_DOCS_DEV=1 PLOTDOCS_PACKAGES='GR' PLOTDOCS_EXAMPLES=1 julia --project -e 'include("make.jl")' From 353cea58bd215066e9002f049ea50ac9a80d7daa Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 09:43:28 +0200 Subject: [PATCH 12/15] upd --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a26154e70..8331fbb9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,9 +77,10 @@ jobs: using Pkg Pkg.instantiate() Pkg.develop([ - (; path="./RecipesBase"), # compat for LTS, remove later - (; path="./RecipesPipeline"), # compat for LTS, remove later - (; path="./PlotThemes"), # compat for LTS, remove later + (; path="./RecipesBase"), # compat for LTS [sources], remove later + (; path="./RecipesPipeline"), # compat for LTS [sources], remove later + (; path="./PlotThemes"), # compat for LTS [sources], remove later + (; path="./PlotsBase"), # compat for LTS [sources], remove later (; path="./GraphRecipes"), (; path="./StatsPlots"), ]) From 06d40ea61d69c1572630122cd7074b93068bca43 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 09:50:09 +0200 Subject: [PATCH 13/15] fix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8331fbb9e..c66344c77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,6 @@ jobs: shell: julia --project=@. --color=yes {0} run: | using Pkg - Pkg.instantiate() Pkg.develop([ (; path="./RecipesBase"), # compat for LTS [sources], remove later (; path="./RecipesPipeline"), # compat for LTS [sources], remove later @@ -84,6 +83,7 @@ jobs: (; path="./GraphRecipes"), (; path="./StatsPlots"), ]) + Pkg.instantiate() - name: Test Plots stack timeout-minutes: 60 From b697481dca205fe5ee03a1ad9b6555b2d1453023 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 10:11:58 +0200 Subject: [PATCH 14/15] upd --- .github/workflows/ci.yml | 1 - .github/workflows/reference_images.yml | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c66344c77..597c88cf1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,7 +83,6 @@ jobs: (; path="./GraphRecipes"), (; path="./StatsPlots"), ]) - Pkg.instantiate() - name: Test Plots stack timeout-minutes: 60 diff --git a/.github/workflows/reference_images.yml b/.github/workflows/reference_images.yml index b8c16d90f..27d225234 100644 --- a/.github/workflows/reference_images.yml +++ b/.github/workflows/reference_images.yml @@ -9,7 +9,6 @@ jobs: steps: - uses: actions/checkout@v4 with: - repository: JuliaPlots/PlotDocs.jl token: ${{ secrets.PLOTS_REFIMAGES_TOKEN }} - uses: julia-actions/setup-julia@latest with: @@ -27,7 +26,7 @@ jobs: Pkg.add(PackageSpec(name="Plots", rev="$gh_ref")) Pkg.test("Plots") - name: Create pull request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@latest with: title: "Update Plot reference images from branch ${{ github.ref_name}} by the action ${{ github.workflow_ref }}" body: "Review changes thoroughly and only merge when no unwanted chages are present." From d112a61ff3437a22fdc098464af5559dab6d5081 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 11 May 2025 10:14:03 +0200 Subject: [PATCH 15/15] update --- .github/workflows/reference_images.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reference_images.yml b/.github/workflows/reference_images.yml index 27d225234..96499880d 100644 --- a/.github/workflows/reference_images.yml +++ b/.github/workflows/reference_images.yml @@ -21,7 +21,7 @@ jobs: shell: julia --color=yes {0} run: | using Pkg - gh_ref = ${{ github.ref_name }} + gh_ref = "${{ github.ref_name }}" @info "Adding Plots#$gh_ref" Pkg.add(PackageSpec(name="Plots", rev="$gh_ref")) Pkg.test("Plots")