This is an automated email from the ASF dual-hosted git repository.
hulk 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 efb4b4c20 fix(ci): add workaround for rocksdb compiling on arch linux
gcc 15 (#2929)
efb4b4c20 is described below
commit efb4b4c208966108f1a2a9a2dcfe29dcec5d1e8f
Author: Edward Xu <[email protected]>
AuthorDate: Mon May 5 20:56:17 2025 +0800
fix(ci): add workaround for rocksdb compiling on arch linux gcc 15 (#2929)
---
.github/workflows/kvrocks.yaml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.github/workflows/kvrocks.yaml b/.github/workflows/kvrocks.yaml
index 25ee1d7f0..538249b77 100644
--- a/.github/workflows/kvrocks.yaml
+++ b/.github/workflows/kvrocks.yaml
@@ -485,6 +485,9 @@ jobs:
pacman -Sy --noconfirm autoconf automake python3 python-redis git
wget which cmake make gcc
echo "NPROC=$(nproc)" >> $GITHUB_ENV
+ # FIXME: Workaround for gcc 15 issue for rocksdb
https://github.com/apache/kvrocks/issues/2927
+ echo "CXXFLAGS=$CXXFLAGS -include cstdint" >> $GITHUB_ENV
+
- name: Setup openSUSE
if: ${{ startsWith(matrix.image, 'opensuse') }}
run: |