pitrou commented on code in PR #37366:
URL: https://github.com/apache/arrow/pull/37366#discussion_r1309926266
##########
ci/scripts/cpp_build.sh:
##########
@@ -189,6 +189,9 @@ cmake \
export CMAKE_BUILD_PARALLEL_LEVEL=${CMAKE_BUILD_PARALLEL_LEVEL:-$[${n_jobs} +
1]}
time cmake --build . --target install
+# Save disk space by removing large temporary build products
+find . -name "*.o" -delete
Review Comment:
Also, the integration utility is not installed:
```console
# ls /opt/conda/envs/arrow/bin/arrow*
/opt/conda/envs/arrow/bin/arrow-file-to-stream
/opt/conda/envs/arrow/bin/arrow-stream-to-file
# ls /build/cpp/debug/arrow*
/build/cpp/debug/arrow-file-to-stream
/build/cpp/debug/arrow-json-integration-test
/build/cpp/debug/arrow-stream-to-file
```
And regardless, `cpp_build.sh` is used by many other builds than the
integration build.
--
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]