]> git.ipfire.org Git - thirdparty/mlmmj.git/commitdiff
ci: add debian/unstable
authorBaptiste Daroussin <bapt@FreeBSD.org>
Fri, 1 Mar 2024 21:15:33 +0000 (22:15 +0100)
committerBaptiste Daroussin <bapt@FreeBSD.org>
Fri, 1 Mar 2024 21:16:05 +0000 (22:16 +0100)
.builds/debian-unstable.yml [new file with mode: 0644]

diff --git a/.builds/debian-unstable.yml b/.builds/debian-unstable.yml
new file mode 100644 (file)
index 0000000..35810de
--- /dev/null
@@ -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 ;}