kou commented on code in PR #46018: URL: https://github.com/apache/arrow/pull/46018#discussion_r2028309152
########## dev/.gitignore: ########## @@ -18,3 +18,6 @@ # Python virtual environments for dev tools .venv*/ +# yum-based builds copy a lot of files there +tasks/linux-packages/apache-arrow/yum/build/ Review Comment: I added it for ccache in CI. If we want to add it, could you do it in `dev/tasks/linux-packages/.gitignore` that already has entries for `dev/tasks/linux-packages/`? ```diff diff --git a/dev/tasks/linux-packages/.gitignore b/dev/tasks/linux-packages/.gitignore index 0e49a90c1e..138662a4ef 100644 --- a/dev/tasks/linux-packages/.gitignore +++ b/dev/tasks/linux-packages/.gitignore @@ -16,13 +16,15 @@ # under the License. /*/*.tar.gz -/*/apt/repositories/ -/*/apt/tmp/ /*/apt/build.sh +/*/apt/build/ /*/apt/env.sh -/*/yum/repositories/ -/*/yum/tmp/ +/*/apt/repositories/ +/*/apt/tmp/ /*/yum/build.sh +/*/yum/build/ /*/yum/env.sh +/*/yum/repositories/ +/*/yum/tmp/ /apt/repositories/ ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org