-
Notifications
You must be signed in to change notification settings - Fork 170
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
Increased runtime for Docker tests #411
Comments
This appears to be caused by the release of Cirq v0.11.1. Sample logs from PRs before and after the change: Before (~7 min for Cirq install):
After (~15 min for Cirq install):
Cirq is installed twice during the Docker tests (once for Docker, and once for the "install test"), so an increase of 10-15 minutes roughly matches with the difference seen above. |
Specifically, most of the time in these tests is lost to building wheels:
This suggests a couple of things:
|
I am unable to reproduce the wheel-building step locally, even with the pip cache disabled. My system consistently retrieves the wheel files for It might be possible to use the pip |
|
Starting with #379 (merged on July 26), Docker tests began taking ~10 minutes longer to complete on average. Either that PR or some other change around that time is suspected to have caused this. We should investigate to see if we can bring the runtime back down, as this is starting to negatively affect the pace at which we can merge PRs.
The text was updated successfully, but these errors were encountered: