This is an automated email from the ASF dual-hosted git repository.
agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
The following commit(s) were added to refs/heads/main by this push:
new a7111668f disable caching on macOS (#2816)
a7111668f is described below
commit a7111668f1e2f3f9bd3e80d2d12f4d4a7d680893
Author: Andy Grove <[email protected]>
AuthorDate: Mon Nov 24 13:20:24 2025 -0700
disable caching on macOS (#2816)
---
.github/actions/java-test/action.yaml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.github/actions/java-test/action.yaml
b/.github/actions/java-test/action.yaml
index ab2bcd74f..64d486227 100644
--- a/.github/actions/java-test/action.yaml
+++ b/.github/actions/java-test/action.yaml
@@ -50,6 +50,10 @@ runs:
cargo build --release
- name: Cache Maven dependencies
+ # TODO: remove next line after working again
+ # temporarily work around
https://github.com/actions/runner-images/issues/13341
+ # by disabling caching for macOS
+ if: ${{ runner.os != 'macOS' }}
uses: actions/cache@v4
with:
path: |
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]