raulcd commented on issue #47467: URL: https://github.com/apache/arrow/issues/47467#issuecomment-4030434334
As a note for future work, building with: > time python -m pip install -C cmake.build-type=Debug -C build.verbose=true --no-deps --no-build-isolation -vv -e . The first PyArrow build took: ``` real 1m7.339s user 3m30.576s sys 0m13.188s ``` Once cached, if the bug mentioned above is locally patched: ``` real 0m58.111s user 2m56.534s sys 0m10.796s ``` Cache seems to improve just by ~15% as it only caches the generation of the CPP files but the C++ compilation of those is still required. We might have to investigate pairing it with ccache or sccache but scikit-build-core rebuilds in a fresh `/tmp/` directory each time that might require some extra configuration. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
