1848df0de5728566c91bc2b0a9849d80eafe9f3d
[tinc] / .builds / netbsd.yml
1 image: netbsd/9.x
2
3 packages:
4   - gmake
5   - automake
6   - autoconf
7   - openssl
8   - lzo
9   - lz4
10   - miniupnpc
11   - readline
12   - gtexinfo
13
14 environment:
15   CFLAGS: -I/usr/pkg/include -L/usr/pkg/lib
16
17 sources:
18   - https://github.com/gsliepen/tinc
19
20 tasks:
21   - configure: |
22       cd tinc
23       autoreconf -fsi
24       ./configure --with-miniupnpc
25
26   - build: |
27       cd tinc
28       gmake -j$(sysctl -n hw.ncpu)
29
30   - test: |
31       cd tinc
32       export LD_LIBRARY_PATH=/usr/pkg/lib
33       gmake check-recursive VERBOSE=1