@@ -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 \
new file mode 100644
@@ -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"
new file mode 100644
@@ -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"
@@ -503,6 +503,38 @@ class CrossTest(CIBaseTest):
except exceptions.TestFail:
self.cancel('KFAIL')
+ def test_cross_forky(self):
+ targets = [
+ 'mc:qemuamd64-forky:isar-image-ci',
+ 'mc:qemuarm64-forky:isar-image-ci',
+ ]
+
+ self.init()
+ try:
+ self.perform_build_test(targets)
+ except exceptions.TestFail:
+ self.cancel('KFAIL')
+
+ def test_run_amd64_forky(self):
+ """
+ :avocado: tags=startvm
+ """
+ self.init()
+ try:
+ self.vm_start('amd64', 'forky', image='isar-image-ci')
+ except exceptions.TestFail:
+ self.cancel('KFAIL')
+
+ def test_run_arm64_forky(self):
+ """
+ :avocado: tags=startvm,riscv64
+ """
+ self.init()
+ try:
+ self.vm_start('arm64', 'forky', image='isar-image-ci')
+ except exceptions.TestFail:
+ self.cancel('KFAIL')
+
def test_cross_mira_trixie(self):
targets = [
'mc:phyboard-mira-trixie:isar-image-base',
@@ -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:
Add multiconfigs and cover them in fast CI (with KFAIL because this distro is in testing state). Signed-off-by: Anton Mikanovich <amikan@ilbers.de> --- meta-isar/conf/mc.conf | 2 ++ .../conf/multiconfig/qemuamd64-forky.conf | 7 ++++ .../conf/multiconfig/qemuarm64-forky.conf | 7 ++++ testsuite/citest.py | 32 +++++++++++++++++++ testsuite/data/targets.yml | 4 +++ 5 files changed, 52 insertions(+) create mode 100644 meta-isar/conf/multiconfig/qemuamd64-forky.conf create mode 100644 meta-isar/conf/multiconfig/qemuarm64-forky.conf