diff options
Diffstat (limited to '.builds')
| -rw-r--r-- | .builds/freebsd.yml | 17 | ||||
| -rw-r--r-- | .builds/netbsd.yml | 17 |
2 files changed, 34 insertions, 0 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml new file mode 100644 index 0000000..4ec737d --- /dev/null +++ b/.builds/freebsd.yml @@ -0,0 +1,17 @@ +image: freebsd/latest +packages: +- autoconf +- automake +- libtool +sources: +- https://git.sr.ht/~pmikkelsen/aplwc +tasks: +- build: | + cd aplwc + ./bootstrap.sh + ./configure + make +- test: | + cd aplwc + make check + make distcheck diff --git a/.builds/netbsd.yml b/.builds/netbsd.yml new file mode 100644 index 0000000..309196f --- /dev/null +++ b/.builds/netbsd.yml @@ -0,0 +1,17 @@ +image: netbsd/latest +packages: +- autoconf +- automake +- libtool +sources: +- https://git.sr.ht/~pmikkelsen/aplwc +tasks: +- build: | + cd aplwc + ./bootstrap.sh + ./configure + make +- test: | + cd aplwc + make check + make distcheck |