From: Baptiste Daroussin Date: Fri, 15 Dec 2023 15:53:42 +0000 (+0100) Subject: ci: add ci on sourcehut X-Git-Tag: RELEASE_1_4_2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7dcd01fe44c487367b3439365e869c9665ceabd;p=thirdparty%2Fmlmmj.git ci: add ci on sourcehut --- diff --git a/.builds/alpine.yml b/.builds/alpine.yml new file mode 100644 index 00000000..ae69e2ae --- /dev/null +++ b/.builds/alpine.yml @@ -0,0 +1,24 @@ +image: alpine/latest +packages: + - musl-dev + - gcc + - autoconf + - automake + - make + - pkgconf + - kyua + - m4 + - atf-dev +sources: + - https://codeberg.org/mlmmj/mlmmj +tasks: + - configure: | + cd mlmmj + autoreconf -if + ./configure + - build: | + cd mlmmj + make + - test: | + cd mlmmj + make check || { kyua report --verbose; exit 1 ;} diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml new file mode 100644 index 00000000..1091b46b --- /dev/null +++ b/.builds/freebsd.yml @@ -0,0 +1,21 @@ +image: freebsd/latest +packages: + - kyua + - autoconf-switch + - autoconf + - automake + - atf + - pkgconf +sources: + - https://codeberg.org/mlmmj/mlmmj +tasks: + - configure: | + cd mlmmj + autoreconf -fi + ./configure + - build: | + cd mlmmj + make + - test: | + cd mlmmj + make check || { kyua report --verbose; exit 1 ;}