From: Baptiste Daroussin Date: Mon, 26 Feb 2024 15:01:03 +0000 (+0100) Subject: ci: add a debian builder X-Git-Tag: RELEASE_1_4_5~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53e8980c5c4945412e8ed9ee7b925e6d6760bb8a;p=thirdparty%2Fmlmmj.git ci: add a debian builder --- diff --git a/.builds/debian.yml b/.builds/debian.yml new file mode 100644 index 00000000..c80f61d0 --- /dev/null +++ b/.builds/debian.yml @@ -0,0 +1,23 @@ +image: debian/testing +packages: + - build-essential + - kyua + - atf-sh + - libatf-dev + - autotools-dev + - pkg-config + - autoconf + - automake +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 ;}