2021.04.15 07:25 "[Tiff] Using libtiff in Windows runners in Github CI", by Jeff

2021.04.15 07:40 "Re: [Tiff] Using libtiff in Windows runners in Github CI", by Roger Leigh

I'd like to set up Windows runners in Github CI for a couple of projects I have that have libtiff as a dependency.

For the Ubuntu runners, it is trivial - I can just

    sudo apt install libtiff

or libtiff-dev, and run the tests.

For the Windows containers, I haven't found a good method of installing the binaries. There are package managers like choco or vcpkg, but I haven't found libtiff packages for them.

libtiff is available directly with vcpkg, the package name is “tiff”.

Run “./vcpkg install tiff:x64-windows” (for example).

Regards,

Roger