From 53e8980c5c4945412e8ed9ee7b925e6d6760bb8a Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Mon, 26 Feb 2024 16:01:03 +0100 Subject: [PATCH] ci: add a debian builder --- .builds/debian.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .builds/debian.yml 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 ;} -- 2.47.3