diff options
| -rw-r--r-- | .builds/debian.yml | 26 | ||||
| -rw-r--r-- | .builds/freebsd.yml | 7 | ||||
| -rw-r--r-- | doc/Makefile.am | 2 |
3 files changed, 33 insertions, 2 deletions
diff --git a/.builds/debian.yml b/.builds/debian.yml new file mode 100644 index 0000000..4452060 --- /dev/null +++ b/.builds/debian.yml @@ -0,0 +1,26 @@ +image: debian/stable +packages: +- autoconf +- automake +- libtool +- gettext +- pkgconf +- help2man +- texinfo +- autopoint +- libreadline-dev +- texlive-full +tasks: +- build: | + cd aplwc + ./bootstrap --skip-po --copy + ./configure + make +- test: |- + cd aplwc + make check + make distcheck +triggers: + - action: email + condition: always + to: petermikkelsen10@gmail.com diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index 4d9e95c..545a079 100644 --- a/.builds/freebsd.yml +++ b/.builds/freebsd.yml @@ -7,6 +7,7 @@ packages: - pkgconf - help2man - texinfo +- texlive-full tasks: - build: | cd aplwc @@ -16,4 +17,8 @@ tasks: - test: | cd aplwc make check - make distcheck
\ No newline at end of file + make distcheck +triggers: + - action: email + condition: always + to: petermikkelsen10@gmail.com diff --git a/doc/Makefile.am b/doc/Makefile.am index b2687db..ff8e1e6 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,6 +1,6 @@ info_TEXINFOS = aplwc.texi -aplwc_TEXINFOS = fdl.texi +aplwc_TEXINFOS = fdl.texi gpl-3.0.texi clean-local: rm -rf manual |