This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch branch-1.9
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/branch-1.9 by this push:
     new 8d5df3175d [KYUUBI #6837] [INFRA] Disable K8s CI image GHA cache
8d5df3175d is described below

commit 8d5df3175df6a82095f62cf06d87949db1c7ca47
Author: Cheng Pan <[email protected]>
AuthorDate: Wed Dec 4 20:33:55 2024 +0800

    [KYUUBI #6837] [INFRA] Disable K8s CI image GHA cache
    
    ### Why are the changes needed?
    
    The GHA cache `engine-archives` seems frequently to be evicted because of 
exceeding the project cache capacity(10GiB), and I found the K8s IT job 
produces fresh large cache objects frequently, we should disable that to let 
`engine-archives` survive, to avoid downloading from the fragile 
`archive.apache.org` each time.
    
    ```
    Connect to archive.apache.org:443 [archive.apache.org/65.108.204.189, 
archive.apache.org/2a01:4f9:1a:a084:0:0:0:2] failed: Network is unreachable 
(connect failed)
    ```
    
    <img width="1306" alt="Xnip2024-12-04_17-36-03" 
src="https://github.com/user-attachments/assets/7e00ecad-8492-4a3e-b669-03b56a05747c";>
    
    PS: I deleted bunches of `buildkit-blob-*` manually to save 
`engine-archives`
    
    ### How was this patch tested?
    
    Monitor GHA after merging.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No.
    
    Closes #6837 from pan3793/k8s-it.
    
    Closes #6837
    
    8bab514dc [Cheng Pan] [INFRA] Disable K8s CI image GHA cache
    
    Authored-by: Cheng Pan <[email protected]>
    Signed-off-by: Cheng Pan <[email protected]>
    (cherry picked from commit ea3a73fa4e597f262561c3b102ef84a01f5790d1)
    Signed-off-by: Cheng Pan <[email protected]>
---
 .github/workflows/master.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml
index 1b1b70a971..8287954f18 100644
--- a/.github/workflows/master.yml
+++ b/.github/workflows/master.yml
@@ -418,6 +418,8 @@ jobs:
       # https://github.com/docker/build-push-action
       - name: Set up Docker Buildx
         uses: docker/setup-buildx-action@v3
+        with:
+          cache-binary: false
       - name: Build Kyuubi Docker Image
         uses: docker/build-push-action@v5
         with:

Reply via email to