X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=.builds%2Fnetbsd.yml;h=bbeaf2885bc1cc6481bf2830c72412d7cbec8ad6;hb=d6866ff0f130704ff963d9e053b1d85407ed2d7c;hp=1848df0de5728566c91bc2b0a9849d80eafe9f3d;hpb=c79f93d90fdb12c839ca59336e9bf571e8cbbcaa;p=tinc diff --git a/.builds/netbsd.yml b/.builds/netbsd.yml index 1848df0d..bbeaf288 100644 --- a/.builds/netbsd.yml +++ b/.builds/netbsd.yml @@ -1,9 +1,8 @@ image: netbsd/9.x packages: - - gmake - - automake - - autoconf + - meson + - pkgconf - openssl - lzo - lz4 @@ -11,23 +10,18 @@ packages: - readline - gtexinfo -environment: - CFLAGS: -I/usr/pkg/include -L/usr/pkg/lib - sources: - https://github.com/gsliepen/tinc tasks: - configure: | cd tinc - autoreconf -fsi - ./configure --with-miniupnpc + meson setup build -Dpkg_config_path=/usr/pkg/lib/pkgconfig -Dminiupnpc=auto - build: | cd tinc - gmake -j$(sysctl -n hw.ncpu) + ninja -C build - test: | cd tinc - export LD_LIBRARY_PATH=/usr/pkg/lib - gmake check-recursive VERBOSE=1 + meson test -C build --verbose