-
Notifications
You must be signed in to change notification settings - Fork 26
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
Speeding up the CI/CD pipeline #155
Comments
reposting from #146 (comment)
|
I think running per-version builds in parallel that should yield the best speed gains, I did that for skia-pathos for building linux-aarch64 wheels (slow because their are compiled inside qemu). Also it is not really necessary that we build all the wheels at every single commit push. We could only build a bunch of them (the min and max supported versions on linux) every time, and build all wheels only on tagged commits maybe. We could push a pre-release tag to test out build on the rest of the environments before making a stable release. Or we could even move the full wheel-building logic to a separate repository like I did for github.com/google/brotli-wheels and inside this repo keep the CI to the minimum |
that'd be great that support for that is still experimental, tracked in cython/cython#2542 |
CI takes too much time to run.
Using ccache in #146 helps some, but not on Windows (need to get it to work there). The following can be a starting point for making ccache work on Windows, also see https://github.com/ccache/ccache/wiki/MS-Visual-Studio:
The other thing to try is breaking up CI runs into per-platform, per-version. Maybe Cython could also be using the stable Python ABI, so we compile just once for many versions.
The text was updated successfully, but these errors were encountered: