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

isapego pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new ec7de0afda6 IGNITE 28318 C++ Client: Fix macOS compilation (#7830)
ec7de0afda6 is described below

commit ec7de0afda68145daa7fd00177bce187823cac57
Author: Igor Sapego <[email protected]>
AuthorDate: Fri Mar 20 10:13:43 2026 +0100

    IGNITE 28318 C++ Client: Fix macOS compilation (#7830)
---
 .github/workflows/python_dbapi_wheels.yml           | 1 +
 modules/platforms/cpp/ignite/network/CMakeLists.txt | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/python_dbapi_wheels.yml 
b/.github/workflows/python_dbapi_wheels.yml
index 82a3a22caf8..75efad39df5 100644
--- a/.github/workflows/python_dbapi_wheels.yml
+++ b/.github/workflows/python_dbapi_wheels.yml
@@ -4,6 +4,7 @@ on:
   push:
     paths:
       - 'modules/platforms/python/dbapi/**'
+      - 'modules/platforms/cpp/**'
       - '.github/workflows/python_dbapi_wheels.yml'
 
   workflow_dispatch:
diff --git a/modules/platforms/cpp/ignite/network/CMakeLists.txt 
b/modules/platforms/cpp/ignite/network/CMakeLists.txt
index 2400a555320..ce02b8f418b 100644
--- a/modules/platforms/cpp/ignite/network/CMakeLists.txt
+++ b/modules/platforms/cpp/ignite/network/CMakeLists.txt
@@ -83,7 +83,7 @@ elseif(APPLE)
         find_package(epoll-shim REQUIRED)
         target_link_libraries(${TARGET} PUBLIC epoll-shim::epoll-shim 
${CMAKE_DL_LIBS})
     else()
-        fetch_dependency(epoll-shim 
https://github.com/jiixyj/epoll-shim/archive/refs/tags/v0.0.20240608.tar.gz 
9751ab5cad7bff8a1388a951276247bf TRUE)
+        fetch_dependency(epoll-shim 
https://github.com/jiixyj/epoll-shim/archive/refs/tags/v0.0.20240608.tar.gz 
8f5125217e4a0eeb96ab01f9dfd56c38f85ac3e8f26ef2578e538e72e87862cb TRUE)
         target_link_libraries(${TARGET} PUBLIC epoll-shim)
     endif()
     add_compile_definitions(EPOLL_SHIM_NO_VARIADICS)

Reply via email to