-
Notifications
You must be signed in to change notification settings - Fork 481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add a very basic precompile workload #2004
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something to note is that the first run time (i.e. precompilation + makedocs
) goes up with this (14s -> 20s on the docs_precompile
workload). But I think that is not a particularly problematic here, as you would mostly run into this on CI.
Is it possible to cache precompilation between CI runs? |
Yes (https://github.com/julia-actions/cache#inputs), but it looks like it might create other issues. |
It looks like the nightly failures are related to this PR (cf. https://github.com/JuliaDocs/Documenter.jl/actions/runs/3925278191 for a new |
Maybe run CI again. |
CI still fails it looks like. |
I can reproduce this issue on
full logs
|
Are you sure it's not reproducible with |
|
It looks like it's this PR then: JuliaLang/julia#44527 But it might be good to see if we can get an MWE out. It looks like the error actually comes from IOCapture.jl. |
I was able to reproduce something with just IOCapture.jl, which I hope will be easier to debug. The error looks a bit different, but I have a hunch it's the same underlying issue. (JuliaLang/julia#48837) |
Version 1.10.0-DEV.699 (2023-03-04) works fine for me. |
Before:
After
Using Julia-1.9.0-beta2.
Edit by @mortenpi: close #2002