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 e19164f03 ci: disable rockylinux8 due to no-space-left issue (#3263)
e19164f03 is described below
commit e19164f032b43c9408a5a0badf53aebeb092d97c
Author: Twice <[email protected]>
AuthorDate: Sun Nov 16 14:28:02 2025 +0800
ci: disable rockylinux8 due to no-space-left issue (#3263)
I've observed that sometimes the rockylinux8 ci fails due to "No space
left on the device" error:
-
https://github.com/apache/kvrocks/actions/runs/19390696392/job/55505160831?pr=3260
-
https://github.com/apache/kvrocks/actions/runs/19385812630/job/55475151645
And since it's in container we cannot do similiar thing like
https://github.com/apache/kvrocks/pull/3261.
So currently we can just disable it.
---
.github/workflows/kvrocks.yaml | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/kvrocks.yaml b/.github/workflows/kvrocks.yaml
index 7f294e06e..af40ea450 100644
--- a/.github/workflows/kvrocks.yaml
+++ b/.github/workflows/kvrocks.yaml
@@ -503,9 +503,10 @@ jobs:
- name: ArchLinux
image: archlinux:base
compiler: gcc
- - name: Rocky Linux 8
- image: rockylinux:8
- compiler: gcc
+ # FIXME: disable it due to "No space left on device" issue
+ # - name: Rocky Linux 8
+ # image: rockylinux:8
+ # compiler: gcc
- name: Rocky Linux 9
image: rockylinux:9
compiler: gcc