public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Anton Mikanovich <amikan@ilbers.de>
To: isar-users@googlegroups.com
Cc: Anton Mikanovich <amikan@ilbers.de>
Subject: [PATCH] testsuite: Cover Debian Forky with CI
Date: Wed, 10 Jun 2026 13:54:08 +0300	[thread overview]
Message-ID: <20260610105408.4051937-1-amikan@ilbers.de> (raw)

Add multiconfigs and cover them in full CI (with KFAIL because this
distro is in testing state).

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 meta-isar/conf/mc.conf                          |  2 ++
 meta-isar/conf/multiconfig/qemuamd64-forky.conf |  7 +++++++
 meta-isar/conf/multiconfig/qemuarm64-forky.conf |  7 +++++++
 testsuite/citest.py                             | 12 ++++++++++++
 testsuite/data/targets.yml                      |  4 ++++
 5 files changed, 32 insertions(+)
 create mode 100644 meta-isar/conf/multiconfig/qemuamd64-forky.conf
 create mode 100644 meta-isar/conf/multiconfig/qemuarm64-forky.conf

diff --git a/meta-isar/conf/mc.conf b/meta-isar/conf/mc.conf
index cb69f5e3..2868ce46 100644
--- a/meta-isar/conf/mc.conf
+++ b/meta-isar/conf/mc.conf
@@ -16,6 +16,7 @@ BBMULTICONFIG = " \
     qemuarm64-bullseye \
     qemuarm64-bookworm \
     qemuarm64-trixie \
+    qemuarm64-forky \
     qemui386-buster \
     qemui386-bullseye \
     qemui386-bookworm \
@@ -26,6 +27,7 @@ BBMULTICONFIG = " \
     qemuamd64-cip-bookworm \
     qemuamd64-iso-bookworm \
     qemuamd64-trixie \
+    qemuamd64-forky \
     container-amd64-buster \
     container-amd64-bullseye \
     container-amd64-bookworm \
diff --git a/meta-isar/conf/multiconfig/qemuamd64-forky.conf b/meta-isar/conf/multiconfig/qemuamd64-forky.conf
new file mode 100644
index 00000000..5088433e
--- /dev/null
+++ b/meta-isar/conf/multiconfig/qemuamd64-forky.conf
@@ -0,0 +1,7 @@
+# This software is a part of Isar.
+# Copyright (C) 2026 ilbers GmbH
+#
+# SPDX-License-Identifier: MIT
+
+MACHINE ?= "qemuamd64"
+DISTRO ?= "debian-forky"
diff --git a/meta-isar/conf/multiconfig/qemuarm64-forky.conf b/meta-isar/conf/multiconfig/qemuarm64-forky.conf
new file mode 100644
index 00000000..46f73fa9
--- /dev/null
+++ b/meta-isar/conf/multiconfig/qemuarm64-forky.conf
@@ -0,0 +1,7 @@
+# This software is a part of Isar.
+# Copyright (C) 2026 ilbers GmbH
+#
+# SPDX-License-Identifier: MIT
+
+MACHINE ?= "qemuarm64"
+DISTRO ?= "debian-forky"
diff --git a/testsuite/citest.py b/testsuite/citest.py
index 6a4c2fee..33d351e1 100644
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -1070,6 +1070,18 @@ class NoCrossTest(CIBaseTest):
         self.init()
         self.vm_start('riscv64', 'trixie')
 
+    def test_nocross_forky(self):
+        targets = [
+            'mc:qemuamd64-forky:isar-image-base',
+            'mc:qemuarm64-forky:isar-image-base',
+        ]
+
+        self.init()
+        try:
+            self.perform_build_test(targets, cross=False)
+        except exceptions.TestFail:
+            self.cancel('KFAIL')
+
     def test_nocross_sid(self):
         targets = [
             'mc:qemuamd64-sid:isar-image-base',
diff --git a/testsuite/data/targets.yml b/testsuite/data/targets.yml
index a6769a0f..0c1c5f33 100644
--- a/testsuite/data/targets.yml
+++ b/testsuite/data/targets.yml
@@ -15,6 +15,8 @@ a: !mux
     name: qemuarm64-bookworm
   qemuarm64-trixie:
     name: qemuarm64-trixie
+  qemuarm64-forky:
+    name: qemuarm64-forky
   qemui386-buster:
     name: qemui386-buster
   qemui386-bullseye:
@@ -35,6 +37,8 @@ a: !mux
     name: qemuamd64-iso-bookworm
   qemuamd64-trixie:
     name: qemuamd64-trixie
+  qemuamd64-forky:
+    name: qemuamd64-forky
   container-amd64-buster:
     name: container-amd64-buster
   container-amd64-bullseye:
-- 
2.34.1

-- 
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/20260610105408.4051937-1-amikan%40ilbers.de.

             reply	other threads:[~2026-06-10 10:54 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-10 10:54 Anton Mikanovich [this message]
2026-06-10 10:55 ` Anton Mikanovich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260610105408.4051937-1-amikan@ilbers.de \
    --to=amikan@ilbers.de \
    --cc=isar-users@googlegroups.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox