Skip to content

Instantly share code, notes, and snippets.

@ianfiske
Created July 17, 2023 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ianfiske/55cdef212cda1531a10798fda434f2a6 to your computer and use it in GitHub Desktop.
Save ianfiske/55cdef212cda1531a10798fda434f2a6 to your computer and use it in GitHub Desktop.
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)
[deps]
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"
#!/bin/sh
julia --project=bug-report mwe.jl
@ianfiske
Copy link
Author

To run

  • clone Makie
  • copy runit.sh and mwe.jl into Makie root
  • create a folder bug-report
  • activate bug report and do dev . and dev ./CairoMakie
  • git bisect start
  • git bisect bad
  • git checkout v0.19.2
  • git bisect good
  • git bisect run sh -c './runit.sh'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment