You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Build workflow's scala and python jobs lost the uv pip install --system switch that #4521 introduced. Both jobs now use the slower stock pip install again, regressing CI install speed for every PR.
The change was reverted in #4597 ("ci: merge binary license checks into build workflow"); during the inline of the binary-license-check steps the python -m pip install uv and uv pip install --system -r ... lines from #4521 were rewritten back to python -m pip install --upgrade pip and pip install -r .... Each subsequent rebase has carried the older lines forward.
How to reproduce?
Open .github/workflows/build.yml on main (commit 8e40078e2f at time of writing).
Look at the scala job's "Install dependencies" step (~line 162) and the python job's "Install dependencies" step (~line 261).
Both run python -m pip install --upgrade pip followed by pip install -r ....
What happened?
The Build workflow's scala and python jobs lost the
uv pip install --systemswitch that #4521 introduced. Both jobs now use the slower stockpip installagain, regressing CI install speed for every PR.The change was reverted in #4597 ("ci: merge binary license checks into build workflow"); during the inline of the binary-license-check steps the
python -m pip install uvanduv pip install --system -r ...lines from #4521 were rewritten back topython -m pip install --upgrade pipandpip install -r .... Each subsequent rebase has carried the older lines forward.How to reproduce?
.github/workflows/build.ymlonmain(commit8e40078e2fat time of writing).python -m pip install --upgrade pipfollowed bypip install -r ....python -m pip install uvfollowed byuv pip install --system -r ....Version
1.1.0-incubating (Pre-release/Master)
Commit Hash (Optional)
8e40078
Relevant log output