public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] CI: Cover starfive-visionfive2 target
@ 2024-01-03  7:42 Anton Mikanovich
  2024-01-03  7:43 ` Anton Mikanovich
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Anton Mikanovich @ 2024-01-03  7:42 UTC (permalink / raw)
  To: isar-users; +Cc: Anton Mikanovich

Add mc:starfive-visionfive2-sid:isar-image-base target to full CI.

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 testsuite/citest.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/testsuite/citest.py b/testsuite/citest.py
index 7be2b86b..afea4e7a 100755
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -231,6 +231,7 @@ class NoCrossTest(CIBaseTest):
         targets = [
             'mc:qemuriscv64-sid:isar-image-base',
             'mc:sifive-fu540-sid:isar-image-base',
+            'mc:starfive-visionfive2-sid:isar-image-base',
                   ]
 
         self.init()
-- 
2.34.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] CI: Cover starfive-visionfive2 target
  2024-01-03  7:42 [PATCH] CI: Cover starfive-visionfive2 target Anton Mikanovich
@ 2024-01-03  7:43 ` Anton Mikanovich
  2024-01-03  7:45   ` Jan Kiszka
  2024-01-03  7:44 ` Jan Kiszka
  2024-02-01 11:47 ` Uladzimir Bely
  2 siblings, 1 reply; 7+ messages in thread
From: Anton Mikanovich @ 2024-01-03  7:43 UTC (permalink / raw)
  To: isar-users

03/01/2024 09:42, Anton Mikanovich wrote:
> Add mc:starfive-visionfive2-sid:isar-image-base target to full CI.
>
> Signed-off-by: Anton Mikanovich <amikan@ilbers.de>

This patch should be placed on top of:
[PATCH 0/9] Restore cross-build for RISC-V, update VisionFive 2


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] CI: Cover starfive-visionfive2 target
  2024-01-03  7:42 [PATCH] CI: Cover starfive-visionfive2 target Anton Mikanovich
  2024-01-03  7:43 ` Anton Mikanovich
@ 2024-01-03  7:44 ` Jan Kiszka
  2024-01-03  7:48   ` Anton Mikanovich
  2024-02-01 11:47 ` Uladzimir Bely
  2 siblings, 1 reply; 7+ messages in thread
From: Jan Kiszka @ 2024-01-03  7:44 UTC (permalink / raw)
  To: Anton Mikanovich, isar-users

On 03.01.24 08:42, Anton Mikanovich wrote:
> Add mc:starfive-visionfive2-sid:isar-image-base target to full CI.
> 
> Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
> ---
>  testsuite/citest.py | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/testsuite/citest.py b/testsuite/citest.py
> index 7be2b86b..afea4e7a 100755
> --- a/testsuite/citest.py
> +++ b/testsuite/citest.py
> @@ -231,6 +231,7 @@ class NoCrossTest(CIBaseTest):
>          targets = [
>              'mc:qemuriscv64-sid:isar-image-base',
>              'mc:sifive-fu540-sid:isar-image-base',
> +            'mc:starfive-visionfive2-sid:isar-image-base',
>                    ]
>  
>          self.init()

Is that cross-building? If so, you need my patches merged first. If not,
you need hours...

Jan

-- 
Siemens AG, Technology
Linux Expert Center


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] CI: Cover starfive-visionfive2 target
  2024-01-03  7:43 ` Anton Mikanovich
@ 2024-01-03  7:45   ` Jan Kiszka
  0 siblings, 0 replies; 7+ messages in thread
From: Jan Kiszka @ 2024-01-03  7:45 UTC (permalink / raw)
  To: Anton Mikanovich, isar-users

On 03.01.24 08:43, Anton Mikanovich wrote:
> 03/01/2024 09:42, Anton Mikanovich wrote:
>> Add mc:starfive-visionfive2-sid:isar-image-base target to full CI.
>>
>> Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
> 
> This patch should be placed on top of:
> [PATCH 0/9] Restore cross-build for RISC-V, update VisionFive 2
> 

OK, that answers my question :)

Jan

-- 
Siemens AG, Technology
Linux Expert Center


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] CI: Cover starfive-visionfive2 target
  2024-01-03  7:44 ` Jan Kiszka
@ 2024-01-03  7:48   ` Anton Mikanovich
  2024-01-03  7:50     ` Jan Kiszka
  0 siblings, 1 reply; 7+ messages in thread
From: Anton Mikanovich @ 2024-01-03  7:48 UTC (permalink / raw)
  To: Jan Kiszka, isar-users

03/01/2024 09:44, Jan Kiszka wrote:
> Is that cross-building? If so, you need my patches merged first. If not,
> you need hours...
>
> Jan

It is not a cross building so far, just like other sid targets.
This test case will be executed during the full CI only.
We probably can try to move some targets from full-nocross to full-cross
(which is not exists currently) in near future.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] CI: Cover starfive-visionfive2 target
  2024-01-03  7:48   ` Anton Mikanovich
@ 2024-01-03  7:50     ` Jan Kiszka
  0 siblings, 0 replies; 7+ messages in thread
From: Jan Kiszka @ 2024-01-03  7:50 UTC (permalink / raw)
  To: Anton Mikanovich, isar-users

On 03.01.24 08:48, Anton Mikanovich wrote:
> 03/01/2024 09:44, Jan Kiszka wrote:
>> Is that cross-building? If so, you need my patches merged first. If not,
>> you need hours...
>>
>> Jan
> 
> It is not a cross building so far, just like other sid targets.
> This test case will be executed during the full CI only.
> We probably can try to move some targets from full-nocross to full-cross
> (which is not exists currently) in near future.
> 

Even on a powerful server, building the mainline kernel with defconfig
natively will take you many hours - be warned.

Jan

-- 
Siemens AG, Technology
Linux Expert Center


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] CI: Cover starfive-visionfive2 target
  2024-01-03  7:42 [PATCH] CI: Cover starfive-visionfive2 target Anton Mikanovich
  2024-01-03  7:43 ` Anton Mikanovich
  2024-01-03  7:44 ` Jan Kiszka
@ 2024-02-01 11:47 ` Uladzimir Bely
  2 siblings, 0 replies; 7+ messages in thread
From: Uladzimir Bely @ 2024-02-01 11:47 UTC (permalink / raw)
  To: Anton Mikanovich, isar-users

On Wed, 2024-01-03 at 09:42 +0200, Anton Mikanovich wrote:
> Add mc:starfive-visionfive2-sid:isar-image-base target to full CI.
> 
> Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
> ---
>  testsuite/citest.py | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/testsuite/citest.py b/testsuite/citest.py
> index 7be2b86b..afea4e7a 100755
> --- a/testsuite/citest.py
> +++ b/testsuite/citest.py
> @@ -231,6 +231,7 @@ class NoCrossTest(CIBaseTest):
>          targets = [
>              'mc:qemuriscv64-sid:isar-image-base',
>              'mc:sifive-fu540-sid:isar-image-base',
> +            'mc:starfive-visionfive2-sid:isar-image-base',
>                    ]
>  
>          self.init()
> -- 
> 2.34.1
> 
Applied to next.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-02-01 11:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-03  7:42 [PATCH] CI: Cover starfive-visionfive2 target Anton Mikanovich
2024-01-03  7:43 ` Anton Mikanovich
2024-01-03  7:45   ` Jan Kiszka
2024-01-03  7:44 ` Jan Kiszka
2024-01-03  7:48   ` Anton Mikanovich
2024-01-03  7:50     ` Jan Kiszka
2024-02-01 11:47 ` Uladzimir Bely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox