-
-
Notifications
You must be signed in to change notification settings - Fork 25.5k
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
CI Actually use ccache in CircleCI #30350
Conversation
Ccache is working now and as expected reused in the PR once the first commit builds, see for example this build log:
This probably saves 3-5 minutes to the build time, see this PR commit build logs: https://app.circleci.com/pipelines/github/scikit-learn/scikit-learn?branch=pull%2F30350. First ones are not cached and doc build takes ~16 minutes, last one is cache and take ~12-13 minutes. I also used
I tried
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice to have.
Thanks @lesteve |
Search for ccache build summary in CircleCI log and you find ccache is not used. This is likely because we are using conda-forge compilers and our current set-up works with system compilers ...