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