Is this just a matter of using pacman rather than vcpkg? #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: pacman -S libuv libuv-devel zlib zlib-devel heimdal-libs mingw-w64-x86_64-ntldd | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- name: Build and run tests | |
run: | | |
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 |