Skip to content

Commit fb71355

Browse files
committed
Bringing back the static zlib dir... forgot that was actually required by the compile
1 parent f25ca00 commit fb71355

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Install dependencies
19-
run: vcpkg install libuv zlib krb5
19+
run: vcpkg install libuv zlib:x64-windows-static krb5
2020
- uses: ilammy/msvc-dev-cmd@v1
2121
- name: Build and run tests
2222
run: |
23-
mkdir build
24-
cd build
23+
ln -s C:\vcpkg\packages\zlib_x64-windows\lib\zlib.lib C:\vcpkg\packages\zlib_x64-windows\lib\zlibstatic.lib
2524
echo "LIB=$(LIB);C:\vcpkg\packages\libuv_x64-windows\lib;C:\vcpkg\packages\zlib_x64-windows\lib;C:\vcpkg\packages\krb5_x64-windows\lib" >> $GITHUB_ENV
2625
echo $LIB
26+
mkdir build
27+
cd build
2728
cmake -G "NMake Makefiles" -DCASS_BUILD_UNIT_TESTS=On ..
2829
nmake
2930
ls .

0 commit comments

Comments
 (0)