Live data from Hacker News

We managed to speed up our CI to save 168 days of execution time per month

developers.home-assistant.io

1–10 of 10 posts

Re: We managed to speed up our CI to save 168 days of execution time per month

#2
They call pytest --collect-only and parse the output before distributing it to the Github Action python matrix. I'm a little surprised pytest doesn't offer the ability to cache collection. Though a slow collection time may be an issue that should be addressed since developers must suffer it locally!

Re: We managed to speed up our CI to save 168 days of execution time per month

#3
Any time I see engineering time spent on splitting/sharding test suites, I can't help but wonder if access to a single beefier runner (e.g. 64+ cpus) would have alleviated all that work. Also always find the duplicated setup time a bit wasteful on resources.

Re: We managed to speed up our CI to save 168 days of execution time per month

#4
post #3

Any time I see engineering time spent on splitting/sharding test suites, I can't help but wonder if access to a single beefier runner (e.g. 64+ cpus) would have alleviated all that work. Also always find the duplicated setup time a bit wasteful on resources.

Basically yeah. At my last company we switch from n GitHub runners to 2 128 core epyc boxes and massively (20x?) decreased our build times. A surprising thing is how much time is spent on IO to upload and restore the cache between steps that’s saved if the entire job runs on a single machine

Re: We managed to speed up our CI to save 168 days of execution time per month

#7
post #3

Any time I see engineering time spent on splitting/sharding test suites, I can't help but wonder if access to a single beefier runner (e.g. 64+ cpus) would have alleviated all that work. Also always find the duplicated setup time a bit wasteful on resources.

Large box in the closet has always been a competitive strategy.

You have to keep your closet clean and organized or else everything is bad, but if you can, it works well.