-
-
Notifications
You must be signed in to change notification settings - Fork 269
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
Backports for Pkg 1.6.2 #2592
Backports for Pkg 1.6.2 #2592
Conversation
src/API.jl
Outdated
@@ -1141,7 +1144,8 @@ function precompile(ctx::Context; internal_call::Bool=false, strict::Bool=false, | |||
end | |||
try | |||
ret = Logging.with_logger(Logging.NullLogger()) do | |||
Base.compilecache(pkg, sourcepath, iob, devnull) # capture stderr, send stdout to devnull | |||
# capture stderr, send stdout to devnull, don't skip loaded modules | |||
Base.compilecache(pkg, sourcepath, iob, devnull, false) |
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.
@IanButterworth is this change not backportable to 1.6.2? (See test failures)
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.
JuliaLang/julia#40345 needs backporting to the base release branch, then CI here needs to be run against that branch
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.
Could JuliaLang/julia#40702 be merged early and another started to continue base backports, so that this can be tested here?
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.
6d1b96e
to
7140b26
Compare
…old format (#2561) * implement manifest format with deps field * temporarily run CI on base PR * simpler convert_flat_format_manifest * default to old manifest format * remove warning about maintaining old manifest format * add unknown manifest format warning * fix * only print the major and minor part of the `manifest_format` to file * add tests for manifest.toml formats * add test for unknown manifest format warning * provide manifest file path in warning, when available * Revert "temporarily run CI on base PR" This reverts commit d4a1e14. * add support for unknown extra data in Manifest * fixes * add missing write_manifest method * fix with windows-safe regex Co-authored-by: KristofferC <[email protected]> (cherry picked from commit a3fc759) New manifest format: Fix `upgrade_manifest` and raw dict entry for nothing (#2610) (cherry picked from commit b8bea6c)
Let's not allow for false-positive results from the PkgServer. (cherry picked from commit 1e0a488)
This passes locally on the 1.6.2 backport branch now. |
Not sure how to run CI properly here now since it needs to be run against a julia branch. |
I'll put this commit on the 1.6 backport branch so I can run PkgEval on it. |
2d1d0e9
to
d69a8a0
Compare
No description provided.