WillAyd commented on code in PR #46501:
URL: https://github.com/apache/arrow/pull/46501#discussion_r2110593186
##########
ci/scripts/cpp_build.sh:
##########
@@ -287,6 +287,11 @@ fi
if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then
time meson compile -j ${ARROW_BUILD_PARALLEL}
meson install
+ # Remove all added files in cpp/subprojects/ because they may have
+ # unreadable permissions on Docker host.
+ pushd "${source_dir}"
+ meson subprojects purge --confirm --include-cache
+ popd
Review Comment:
Ah OK - I was excluding subprojects from my consideration of the source
directory, as Meson does unpack third party dependencies to that directory
during the configure stage (i.e. before the build directory even exists)
--
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]