* [PATCH] CI: Protect rpi targets by KFAIL
@ 2022-03-02 8:32 Anton Mikanovich
2022-03-17 13:48 ` Anton Mikanovich
0 siblings, 1 reply; 2+ messages in thread
From: Anton Mikanovich @ 2022-03-02 8:32 UTC (permalink / raw)
To: isar-users; +Cc: Anton Mikanovich
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
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] CI: Protect rpi targets by KFAIL
2022-03-02 8:32 [PATCH] CI: Protect rpi targets by KFAIL Anton Mikanovich
@ 2022-03-17 13:48 ` Anton Mikanovich
0 siblings, 0 replies; 2+ messages in thread
From: Anton Mikanovich @ 2022-03-17 13:48 UTC (permalink / raw)
To: isar-users
02.03.2022 11:32, Anton Mikanovich wrote:
> 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>
Applied to next.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-03-17 13:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-02 8:32 [PATCH] CI: Protect rpi targets by KFAIL Anton Mikanovich
2022-03-17 13:48 ` Anton Mikanovich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox