From: Anton Mikanovich <amikan@ilbers.de>
To: isar-users@googlegroups.com
Cc: Anton Mikanovich <amikan@ilbers.de>
Subject: [PATCH] CI: Protect rpi targets by KFAIL
Date: Wed, 2 Mar 2022 11:32:49 +0300 [thread overview]
Message-ID: <20220302083249.52105-1-amikan@ilbers.de> (raw)
Running CI is currently blocked by failing raspbian targets, like:
E: Can not find version '10.2.1-6' of package 'gcc-10'
E: Unable to find a source package for gcc-10
There is also some mkfs.vfat issues reported.
So cover all rpi targets by KFAIL until issues will be resolved.
Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
testsuite/build_test/build_test.py | 31 ++++++++++++++++++++++++------
1 file changed, 25 insertions(+), 6 deletions(-)
diff --git a/testsuite/build_test/build_test.py b/testsuite/build_test/build_test.py
index e0eea1bd..0118efb8 100644
--- a/testsuite/build_test/build_test.py
+++ b/testsuite/build_test/build_test.py
@@ -67,13 +67,23 @@ class CrossTest(CIBaseTest):
'mc:qemuarm-bullseye:isar-image-base',
'mc:qemuarm64-bullseye:isar-image-base',
'mc:de0-nano-soc-bullseye:isar-image-base',
- 'mc:stm32mp15x-buster:isar-image-base',
- 'mc:rpi-arm-v7-bullseye:isar-image-base'
+ 'mc:stm32mp15x-buster:isar-image-base'
]
self.init()
self.perform_build_test(targets, cross=True)
+ def test_cross_rpi(self):
+ targets = [
+ 'mc:rpi-arm-v7-bullseye:isar-image-base'
+ ]
+
+ self.init()
+ try:
+ self.perform_build_test(targets, cross=True)
+ except:
+ self.cancel('KFAIL')
+
def test_cross_ubuntu(self):
targets = [
'mc:qemuarm64-focal:isar-image-base'
@@ -133,10 +143,6 @@ class NoCrossTest(CIBaseTest):
'mc:qemumipsel-bullseye:isar-image-base',
'mc:imx6-sabrelite-bullseye:isar-image-ubi',
'mc:phyboard-mira-bullseye:isar-image-ubi',
- 'mc:rpi-arm-bullseye:isar-image-base',
- 'mc:rpi-arm-v7-bullseye:isar-image-base',
- 'mc:rpi-arm-v7l-bullseye:isar-image-base',
- 'mc:rpi-arm64-v8-bullseye:isar-image-base',
'mc:hikey-bullseye:isar-image-base',
'mc:virtualbox-bullseye:isar-image-base',
'mc:bananapi-bullseye:isar-image-base',
@@ -150,6 +156,19 @@ class NoCrossTest(CIBaseTest):
self.delete_from_build_dir('tmp')
self.perform_build_test(targets, cross=False)
+ def test_nocross_rpi(self):
+ targets = [
+ 'mc:rpi-arm-bullseye:isar-image-base',
+ 'mc:rpi-arm-v7-bullseye:isar-image-base',
+ 'mc:rpi-arm-v7l-bullseye:isar-image-base',
+ 'mc:rpi-arm64-v8-bullseye:isar-image-base'
+ ]
+
+ try:
+ self.perform_build_test(targets, 0, None)
+ except:
+ self.cancel('KFAIL')
+
def test_nocross_bookworm(self):
targets = [
'mc:qemuamd64-bookworm:isar-image-base',
--
2.20.1
next reply other threads:[~2022-03-02 8:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-02 8:32 Anton Mikanovich [this message]
2022-03-17 13:48 ` 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=20220302083249.52105-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