pitrou commented on code in PR #48595:
URL: https://github.com/apache/arrow/pull/48595#discussion_r2671438038
##########
.github/workflows/cpp_extra.yml:
##########
@@ -337,19 +337,22 @@ jobs:
if: >-
needs.check-labels.outputs.force == 'true' ||
contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'),
'CI: Extra') ||
- contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'),
'CI: Extra: C++')
+ contains(fromJSON(needs.check-labels.outputs.ci-extra-labels || '[]'),
'CI: Extra: C++') ||
+ contains(join(github.event.pull_request.changed_files, ' '),
'cpp/src/arrow/flight/sql/odbc/')
Review Comment:
I don't think that's the right approach, as ODBC can still be affected by
non-ODBC changes. We don't do this for other optional jobs such as CUDA, etc.
--
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]