Copilot commented on code in PR #51378:
URL: https://github.com/apache/arrow/pull/51378#discussion_r4036512269
##########
.github/workflows/matlab.yml:
##########
@@ -165,7 +165,7 @@ jobs:
with:
path: |
${{ steps.ccache-info.outputs.cache-dir }}
- key: matlab-ccache-windows-${{ hashFiles('cpp/**', 'matlab/**') }}
+ key: matlab-ccache-windows-${{ hashFiles('cpp/**', 'matlab/**',
'!matlab/build/**') }}
Review Comment:
This exclusion does not address the reported Windows failure: the key still
traverses `cpp/**`, and the issue identifies lingering
`mspdbsrv.exe`/`vctip.exe` handles there as the cause of the post-job
`hashFiles` failure. Please add an `if: always()` Windows cleanup step to
terminate those compiler processes before the cache post step runs, and narrow
the hashed inputs to source/config paths rather than the generated tree.
--
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]