diff options
| -rw-r--r-- | .builds/debian.yml | 17 | ||||
| -rw-r--r-- | .builds/fedora.yml | 18 |
2 files changed, 35 insertions, 0 deletions
diff --git a/.builds/debian.yml b/.builds/debian.yml new file mode 100644 index 0000000..e877fb6 --- /dev/null +++ b/.builds/debian.yml @@ -0,0 +1,17 @@ +image: debian/stable +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/fedora.yml b/.builds/fedora.yml new file mode 100644 index 0000000..4bc9e58 --- /dev/null +++ b/.builds/fedora.yml @@ -0,0 +1,18 @@ +image: fedora/rawhide +packages: +- autoconf +- automake +- libtool +- awk +sources: +- https://git.sr.ht/~pmikkelsen/aplwc +tasks: +- build: | + cd aplwc + ./bootstrap.sh + ./configure + make +- test: | + cd aplwc + make check + make distcheck |