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

twice pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks.git


The following commit(s) were added to refs/heads/unstable by this push:
     new 5e958d5cb chore(ci): Downgrade Alpine to 3.22 to avoid cluster test 
crash (#3330)
5e958d5cb is described below

commit 5e958d5cb8c16d4a1869c1c727e31a475b054c7d
Author: Aleks Lozovyuk <[email protected]>
AuthorDate: Wed Jan 7 10:36:11 2026 +0300

    chore(ci): Downgrade Alpine to 3.22 to avoid cluster test crash (#3330)
    
    After extensive testing, I identified the root cause of the broken CI
    tests: the Alpine version used in the tests is too new. Alpine 3.23
    introduces many changes, some of which cause compatibility issues.
    Specifically, our C++ tests for the Cluster fail to start and crash
    without any output.
    
    As a quick fix, this PR switches to Alpine 3.22 by updating the image
    version in the CI matrix
    
    This patch fix a bugs into #3329 #3328 #3232
---
 .github/workflows/kvrocks.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/kvrocks.yaml b/.github/workflows/kvrocks.yaml
index d0d3f50b7..84be48d60 100644
--- a/.github/workflows/kvrocks.yaml
+++ b/.github/workflows/kvrocks.yaml
@@ -512,7 +512,7 @@ jobs:
             image: debian:12
             compiler: gcc
           - name: Alpine 3
-            image: alpine:3
+            image: alpine:3.22
             compiler: gcc
             disable_jemalloc: -DDISABLE_JEMALLOC=ON
 

Reply via email to