mirror of
https://github.com/pocoproject/poco.git
synced 2026-01-12 00:04:54 +08:00
* feat(ODBC): nix shells for mssql and oracle #5144 * fix(cmake): not using cppignore #5146 * fix(Data/ODBC): Improve Nix CI container startup and debugging Oracle (oracle.nix): - Add --shm-size=1g for Oracle container (requires 1GB shared memory) - Add container state verification before exec commands - Add proper error handling with container log output on failure - Add pre-flight checks in build_and_test to verify container running - Add Podman environment info for CI debugging - Add progress indicators during Oracle startup wait - Exit with error in CI mode if container fails to start MSSQL (mssql.nix): - Add ODBCINSTINI environment variable - Add sync command to flush ODBC configs to disk - Add odbcinst verification commands Temporarily disable all ci except nix #5144 * try newer oracle version * use ubuntu 24.04 for nix ci (podman related) * chore(c): restore ci.yml * Update Data/ODBC/oracle.nix Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update Data/ODBC/oracle.nix Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update Data/ODBC/mssql.nix Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update Data/ODBC/oracle.nix Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix(odbc): verify oracle downloads #5144 * chore(doc): update nix documentation #5144 --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
31 lines
1.2 KiB
CMake
31 lines
1.2 KiB
CMake
# Sources
|
|
file(GLOB SRCS_G "src/*.cpp")
|
|
POCO_SOURCES_AUTO(TEST_SRCS ${SRCS_G})
|
|
|
|
# Headers
|
|
file(GLOB_RECURSE HDRS_G "src/*.h")
|
|
POCO_HEADERS_AUTO(TEST_SRCS ${HDRS_G})
|
|
|
|
POCO_SOURCES_AUTO_PLAT(TEST_SRCS OFF
|
|
src/WinDriver.cpp
|
|
)
|
|
|
|
add_executable(NetSSLWin-testrunner ${TEST_SRCS})
|
|
set_target_properties(NetSSLWin-testrunner PROPERTIES DEBUG_POSTFIX "d")
|
|
# NetSSL_Win is Windows-only, so always use cppignore.win
|
|
add_test(
|
|
NAME NetSSLWin
|
|
WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
|
|
COMMAND NetSSLWin-testrunner -ignore ${CMAKE_SOURCE_DIR}/cppignore.win -all
|
|
)
|
|
set_tests_properties(NetSSLWin PROPERTIES ENVIRONMENT POCO_BASE=${CMAKE_SOURCE_DIR})
|
|
target_link_libraries(NetSSLWin-testrunner PUBLIC Poco::NetSSL Poco::Util Poco::XML CppUnit)
|
|
|
|
# The test is run in the build directory. So the test data is copied there too
|
|
add_custom_command(
|
|
TARGET NetSSLWin-testrunner POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/any.pem ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/rootcert.pem ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/testrunner.xml ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/NetSSLWin.xml
|
|
)
|