ashkulz / NppFTP

Plugin for Notepad++ allowing FTP, FTPS, FTPES and SFTP communications
https://ashkulz.github.io/NppFTP/
320 stars 93 forks source link

test ubuntu bionic build #260

Closed chcg closed 5 years ago

ashkulz commented 5 years ago

You can use services: docker and then use this to run builds under Debian 10, which has the latest compiler and produces even more warnings:

docker run -v$PWD:/src -w /src debian:buster /bin/sh -c "apt-get update && apt-get install -y mingw-w64 python3 perl cmake zip && make -f Makefile.mingw BITS=32"

Unfortunately, it requires the posix versions to be used instead of win32 -- need to fix that correctly.

ashkulz commented 5 years ago

Switched to docker build using bionic for Travis CI in 863f7cef8e0aae29bfa1deb3429064577af290e7, so no need to depend on beta features. This also allows us to switch the compilation environment very easily e.g. #261 👍