diff options
| author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2025-11-12 22:41:59 +0100 |
|---|---|---|
| committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2025-11-12 22:41:59 +0100 |
| commit | c0a0ce72bb70fe0ad1bb59fce3d8a2736dc22ea8 (patch) | |
| tree | e2e70900e9a5a69e31e7a8f0263545f06ccafb03 /.builds | |
| parent | 4b948514d3d67e4c746b69510f44c15dbfe8898e (diff) | |
And a few bsd builds
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 |