Skip to content

Commit

Permalink
Disable libuv in tests
Browse files Browse the repository at this point in the history
Summary:
Disable libuv in tests until CI is green again.

Test Plan:
Test on github
  • Loading branch information
c-p-i-o committed Nov 5, 2024
1 parent 679d35d commit c258b2d
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions gloo/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@ endif()
add_executable(gloo_test ${GLOO_TEST_SRCS})
target_link_libraries(gloo_test gloo gtest ${GLOO_TEST_LIBRARIES} OpenSSL::SSL OpenSSL::Crypto)

if(MSVC AND USE_LIBUV)
add_custom_command(TARGET gloo_test POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
"${libuv_DLL_PATH}"
$<TARGET_FILE_DIR:gloo_test>)
endif()
#TODO: re-enable LIBUV once CI is green again
#if(MSVC AND USE_LIBUV)
# add_custom_command(TARGET gloo_test POST_BUILD
# COMMAND ${CMAKE_COMMAND} -E copy_if_different
# "${libuv_DLL_PATH}"
# $<TARGET_FILE_DIR:gloo_test>)
#endif()

if(USE_CUDA)
if(NOT MSVC)
Expand Down

0 comments on commit c258b2d

Please sign in to comment.