Created
July 17, 2023 16:58
-
-
Save ianfiske/55cdef212cda1531a10798fda434f2a6 to your computer and use it in GitHub Desktop.
MWE git bisect setup for https://github.com/MakieOrg/Makie.jl/issues/2817
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Pkg | |
Pkg.update() | |
using CairoMakie | |
xs = range(0, π; length=100) | |
fig = Figure() | |
fig[1, 1] = Axis(fig) | |
lines!(xs, sin.(xs); label="sin") | |
lines!(xs, cos.(xs); label="cos") | |
axislegend() | |
empty!(fig) | |
fig[1, 1] = Axis(fig) | |
lines!(xs, sin.(xs); label="sin") | |
lines!(xs, cos.(xs); label="cos") | |
axislegend() | |
display(fig) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[deps] | |
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0" | |
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
julia --project=bug-report mwe.jl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To run
runit.sh
andmwe.jl
into Makie rootbug-report
dev .
anddev ./CairoMakie
git bisect start
git bisect bad
git checkout v0.19.2
git bisect good
git bisect run sh -c './runit.sh'