From: Baptiste Daroussin Date: Fri, 1 Mar 2024 21:15:33 +0000 (+0100) Subject: ci: add debian/unstable X-Git-Tag: RELEASE_1_4_5~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09878905c356255371b311e56bad26210e82c317;p=thirdparty%2Fmlmmj.git ci: add debian/unstable --- diff --git a/.builds/debian-unstable.yml b/.builds/debian-unstable.yml new file mode 100644 index 00000000..35810de1 --- /dev/null +++ b/.builds/debian-unstable.yml @@ -0,0 +1,23 @@ +image: debian/unstable +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 ;}