This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new c0d4980dab [KYUUBI #7135] Fix cannot access /tmp/engine-archives: No
such file or directory
c0d4980dab is described below
commit c0d4980dabc203b92383275c6aaa1d48e536b8d3
Author: Cheng Pan <[email protected]>
AuthorDate: Fri Jul 11 10:52:08 2025 +0800
[KYUUBI #7135] Fix cannot access /tmp/engine-archives: No such file or
directory
### Why are the changes needed?
Fix
```
Run ls -lh /tmp/engine-archives
ls: cannot access '/tmp/engine-archives': No such file or directory
Error: Process completed with exit code 2.
```
### How was this patch tested?
GHA
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #7135 from pan3793/gha-cache-fix.
Closes #7135
99ef56082 [Cheng Pan] Fix cannot access /tmp/engine-archives: No such file
or directory
Authored-by: Cheng Pan <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
.github/actions/cache-engine-archives/action.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/actions/cache-engine-archives/action.yaml
b/.github/actions/cache-engine-archives/action.yaml
index 731813d0c8..ff69d0b4cc 100644
--- a/.github/actions/cache-engine-archives/action.yaml
+++ b/.github/actions/cache-engine-archives/action.yaml
@@ -27,4 +27,4 @@ runs:
key: engine-archives
- name: Show cached engine archives
shell: bash
- run: ls -lh /tmp/engine-archives
+ run: ls -lh /tmp/engine-archives || echo ''