elastic / ml-cpp

Machine learning C++ code
Other
149 stars 62 forks source link

[ML] Add zlib.pdb file to Windows' CI dependencies #2659

Closed edsavage closed 4 months ago

edsavage commented 4 months ago

Our logs for Windows CI builds contain warnings similar to:

zlib.lib(deflate.obj) : warning LNK4099: PDB 'zlib.pdb' was not found with 'zlib.lib(deflate.obj)'...

The PDB file is already built as part of the Windows bootstrapping process - see build-setup/windows.md. This change ensures that the dependencies archive deployed to the CI build host contains it.

Relates #2653