Skip to content

Forgot ldconfig was still in there #50

Forgot ldconfig was still in there

Forgot ldconfig was still in there #50

Workflow file for this run

on: [push]
name: Test
jobs:
test:
name: Build and test driver on windows-2022
runs-on: windows-2019
env:
CASS_DRIVER_LIBEV_INCLUDES: C:\vcpkg\packages\libev_x64-windows\include\libev
CASS_DRIVER_LIBEV_LIBS: C:\vcpkg\packages\libev_x64-windows\lib
LIBUV_ROOT_DIR: C:\vcpkg\packages\libuv_x64-windows
LIBUV_LIB_DIR: C:\vcpkg\packages\libuv_x64-windows\lib
ZLIB_ROOT_DIR: C:\vcpkg\packages\zlib_x64-windows-static
ZLIB_LIB_DIR: C:\vcpkg\packages\zlib_x64-windows-static\lib
KERBEROS_ROOT_DIR: C:\vcpkg\packages\krb5_x64-windows
KERBEROS_LIB_DIR: C:\vcpkg\packages\krb5_x64-windows\lib
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: vcpkg install libuv zlib:x64-windows-static krb5
- uses: ilammy/msvc-dev-cmd@v1
- name: Build and run tests
run: |
ln -s C:\vcpkg\packages\zlib_x64-windows-static\lib\zlib.lib C:\vcpkg\packages\zlib_x64-windows-static\lib\zlibstatic.lib
echo "LIB=$LIB;C:\vcpkg\packages\libuv_x64-windows\lib;C:\vcpkg\packages\zlib_x64-windows-static\lib;C:\vcpkg\packages\krb5_x64-windows\lib" >> $GITHUB_ENV
echo "LIB is $LIB"
mkdir build
cd build
cmake -G "NMake Makefiles" -DCASS_BUILD_UNIT_TESTS=On ..
nmake
ls .
ntldd ./cassandra-unit-tests.exe
./cassandra-unit-tests.exe --gtest_output=xml:gtest-results.xml
ls .
- name: Publish test results
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: build\gtest-results.xml