-
-
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
Precompilation workload: set "JULIA_PKG_UNPACK_REGISTRY" => nothing
#3662
Conversation
a8753cc
to
53b2b0c
Compare
"JULIA_PKG_UNPACK_REGISTRY" => nothing
53b2b0c
to
c39f6e2
Compare
How does |
If you don't modify the depot path, there's no need to precompile Pkg (because you can use the existing cache files), so the precompilation workload never gets run. If you do modify the depot path, Pkg needs to be precompiled, so the precompilation workload gets run. If the "unpack registries" environment variable is set, this clashes with the "setup" function inside the precompilation workflow, which specifically sets up a non-unpacked registry. |
To me, it seems like we should just set some kind of default |
I think we already do that: Lines 10 to 11 in ee39026
|
Which code path are you talking about precompiling? The default code path (the user doesn't set the |
c39f6e2
to
0fd7ed9
Compare
0fd7ed9
to
3bd14e7
Compare
Fixes #3663