All of lore.kernel.org
 help / color / mirror / Atom feed
* [yocto-autobuilder2][PATCH] schedulers: add meta-webosose scheduled build for scarthgap
@ 2025-04-29  2:16 hieu2.nguyen
  2025-04-29  6:37 ` [yocto-patches] " Mathieu Dubois-Briand
  2025-05-14 10:00 ` [yocto-patches] " Richard Purdie
  0 siblings, 2 replies; 6+ messages in thread
From: hieu2.nguyen @ 2025-04-29  2:16 UTC (permalink / raw)
  To: yocto-patches; +Cc: martin.jansa, Hieu Van Nguyen

From: Hieu Van Nguyen <hieu2.nguyen@lge.com>

Support to build meta-webosose for both of kirkstone and scarthgap
branches.

Signed-off-by: Hieu Van Nguyen <hieu2.nguyen@lge.com>
---
 schedulers.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/schedulers.py b/schedulers.py
index fd2cad6..1fead60 100644
--- a/schedulers.py
+++ b/schedulers.py
@@ -642,7 +642,10 @@ schedulers.append(sched.AnyBranchScheduler(name="bitbake-docs-changed",
             properties=repos_dict_for_scheduler("docs"),
             builderNames=["docs"]))
 
-# Run meta-webosose for kirkstone once a week on weekends (2am on Friday)
+# Run meta-webosose for kirkstone and scarthgap once a week on weekends (2am on Friday)
 schedulers.append(sched.Nightly(name='nightly-meta-webosose', branch='kirkstone', properties=parent_default_props('meta-webosose', 'kirkstone'),
                                 codebases = {'' : {'branch' : 'kirkstone'}},
                                 builderNames=['meta-webosose'], hour=2, minute=0, dayOfWeek=4))
+schedulers.append(sched.Nightly(name='nightly-meta-webosose', branch='scarthgap', properties=parent_default_props('meta-webosose', 'scarthgap'),
+                                codebases = {'' : {'branch' : 'scarthgap'}},
+                                builderNames=['meta-webosose'], hour=2, minute=0, dayOfWeek=4))
-- 
2.48.1



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

* Re: [yocto-patches] [yocto-autobuilder2][PATCH] schedulers: add meta-webosose scheduled build for scarthgap
  2025-04-29  2:16 [yocto-autobuilder2][PATCH] schedulers: add meta-webosose scheduled build for scarthgap hieu2.nguyen
@ 2025-04-29  6:37 ` Mathieu Dubois-Briand
  2025-04-29  6:47   ` Martin Jansa
  2025-05-14 10:00 ` [yocto-patches] " Richard Purdie
  1 sibling, 1 reply; 6+ messages in thread
From: Mathieu Dubois-Briand @ 2025-04-29  6:37 UTC (permalink / raw)
  To: yocto-patches; +Cc: martin.jansa, Hieu Van Nguyen

On Tue Apr 29, 2025 at 4:16 AM CEST, Hieu Van Nguyen via lists.yoctoproject.org wrote:
> From: Hieu Van Nguyen <hieu2.nguyen@lge.com>
>
> Support to build meta-webosose for both of kirkstone and scarthgap
> branches.
>
> Signed-off-by: Hieu Van Nguyen <hieu2.nguyen@lge.com>
> ---
>  schedulers.py | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/schedulers.py b/schedulers.py
> index fd2cad6..1fead60 100644
> --- a/schedulers.py
> +++ b/schedulers.py
> @@ -642,7 +642,10 @@ schedulers.append(sched.AnyBranchScheduler(name="bitbake-docs-changed",
>              properties=repos_dict_for_scheduler("docs"),
>              builderNames=["docs"]))
>  
> -# Run meta-webosose for kirkstone once a week on weekends (2am on Friday)
> +# Run meta-webosose for kirkstone and scarthgap once a week on weekends (2am on Friday)
>  schedulers.append(sched.Nightly(name='nightly-meta-webosose', branch='kirkstone', properties=parent_default_props('meta-webosose', 'kirkstone'),
>                                  codebases = {'' : {'branch' : 'kirkstone'}},
>                                  builderNames=['meta-webosose'], hour=2, minute=0, dayOfWeek=4))
> +schedulers.append(sched.Nightly(name='nightly-meta-webosose', branch='scarthgap', properties=parent_default_props('meta-webosose', 'scarthgap'),
> +                                codebases = {'' : {'branch' : 'scarthgap'}},
> +                                builderNames=['meta-webosose'], hour=2, minute=0, dayOfWeek=4))

Hi Hieu,

IIRC in your previous version you also had changes about meta-qt6
versions. Are these changes not needed anymore?

-- 
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



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

* Re: [yocto-patches] [yocto-autobuilder2][PATCH] schedulers: add meta-webosose scheduled build for scarthgap
  2025-04-29  6:37 ` [yocto-patches] " Mathieu Dubois-Briand
@ 2025-04-29  6:47   ` Martin Jansa
  2025-04-29  8:35     ` Mathieu Dubois-Briand
  0 siblings, 1 reply; 6+ messages in thread
From: Martin Jansa @ 2025-04-29  6:47 UTC (permalink / raw)
  To: Mathieu Dubois-Briand; +Cc: yocto-patches, Hieu Van Nguyen

On Tue, Apr 29, 2025 at 8:37 AM Mathieu Dubois-Briand
<mathieu.dubois-briand@bootlin.com> wrote:
>
> On Tue Apr 29, 2025 at 4:16 AM CEST, Hieu Van Nguyen via lists.yoctoproject.org wrote:
> > From: Hieu Van Nguyen <hieu2.nguyen@lge.com>
> >
> > Support to build meta-webosose for both of kirkstone and scarthgap
> > branches.
> >
> > Signed-off-by: Hieu Van Nguyen <hieu2.nguyen@lge.com>
> > ---
> >  schedulers.py | 5 ++++-
> >  1 file changed, 4 insertions(+), 1 deletion(-)
> >
> > diff --git a/schedulers.py b/schedulers.py
> > index fd2cad6..1fead60 100644
> > --- a/schedulers.py
> > +++ b/schedulers.py
> > @@ -642,7 +642,10 @@ schedulers.append(sched.AnyBranchScheduler(name="bitbake-docs-changed",
> >              properties=repos_dict_for_scheduler("docs"),
> >              builderNames=["docs"]))
> >
> > -# Run meta-webosose for kirkstone once a week on weekends (2am on Friday)
> > +# Run meta-webosose for kirkstone and scarthgap once a week on weekends (2am on Friday)
> >  schedulers.append(sched.Nightly(name='nightly-meta-webosose', branch='kirkstone', properties=parent_default_props('meta-webosose', 'kirkstone'),
> >                                  codebases = {'' : {'branch' : 'kirkstone'}},
> >                                  builderNames=['meta-webosose'], hour=2, minute=0, dayOfWeek=4))
> > +schedulers.append(sched.Nightly(name='nightly-meta-webosose', branch='scarthgap', properties=parent_default_props('meta-webosose', 'scarthgap'),
> > +                                codebases = {'' : {'branch' : 'scarthgap'}},
> > +                                builderNames=['meta-webosose'], hour=2, minute=0, dayOfWeek=4))
>
> Hi Hieu,
>
> IIRC in your previous version you also had changes about meta-qt6
> versions. Are these changes not needed anymore?

Maybe you mean this commit:
https://web.git.yoctoproject.org/yocto-autobuilder2/commit/?id=21b5aa780ea79c32b340d53aaef808520983b88b
which was already merged and the same version should be used for both
kirkstone and scarthgap based builds.

Cheers,


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

* Re: [yocto-patches] [yocto-autobuilder2][PATCH] schedulers: add meta-webosose scheduled build for scarthgap
  2025-04-29  6:47   ` Martin Jansa
@ 2025-04-29  8:35     ` Mathieu Dubois-Briand
  2025-05-07 13:06       ` Hieu Van Nguyen
  0 siblings, 1 reply; 6+ messages in thread
From: Mathieu Dubois-Briand @ 2025-04-29  8:35 UTC (permalink / raw)
  To: Martin Jansa; +Cc: yocto-patches, Hieu Van Nguyen

On Tue Apr 29, 2025 at 8:47 AM CEST, Martin Jansa wrote:
> On Tue, Apr 29, 2025 at 8:37 AM Mathieu Dubois-Briand
> <mathieu.dubois-briand@bootlin.com> wrote:
>>
>> IIRC in your previous version you also had changes about meta-qt6
>> versions. Are these changes not needed anymore?
>
> Maybe you mean this commit:
> https://web.git.yoctoproject.org/yocto-autobuilder2/commit/?id=21b5aa780ea79c32b340d53aaef808520983b88b
> which was already merged and the same version should be used for both
> kirkstone and scarthgap based builds.
>
> Cheers,

Oh yes, it was that!

So everything is fine, I'm OK to merge this patch.

-- 
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



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

* Re: [yocto-autobuilder2][PATCH] schedulers: add meta-webosose scheduled build for scarthgap
  2025-04-29  8:35     ` Mathieu Dubois-Briand
@ 2025-05-07 13:06       ` Hieu Van Nguyen
  0 siblings, 0 replies; 6+ messages in thread
From: Hieu Van Nguyen @ 2025-05-07 13:06 UTC (permalink / raw)
  To: yocto-patches

[-- Attachment #1: Type: text/plain, Size: 183 bytes --]

Hi Mathieu & Richard,

Could you please consider merging this patch? Let's see how the build goes, and we'll make further updates if necessary.

Thanks and best regards,

Hieu

[-- Attachment #2: Type: text/html, Size: 2705 bytes --]

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

* Re: [yocto-patches] [yocto-autobuilder2][PATCH] schedulers: add meta-webosose scheduled build for scarthgap
  2025-04-29  2:16 [yocto-autobuilder2][PATCH] schedulers: add meta-webosose scheduled build for scarthgap hieu2.nguyen
  2025-04-29  6:37 ` [yocto-patches] " Mathieu Dubois-Briand
@ 2025-05-14 10:00 ` Richard Purdie
  1 sibling, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2025-05-14 10:00 UTC (permalink / raw)
  To: yocto-patches; +Cc: martin.jansa, Hieu Van Nguyen

On Tue, 2025-04-29 at 11:16 +0900, Hieu Van Nguyen via lists.yoctoproject.org wrote:
> From: Hieu Van Nguyen <hieu2.nguyen@lge.com>
> 
> Support to build meta-webosose for both of kirkstone and scarthgap
> branches.
> 
> Signed-off-by: Hieu Van Nguyen <hieu2.nguyen@lge.com>
> ---
>  schedulers.py | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/schedulers.py b/schedulers.py
> index fd2cad6..1fead60 100644
> --- a/schedulers.py
> +++ b/schedulers.py
> @@ -642,7 +642,10 @@ schedulers.append(sched.AnyBranchScheduler(name="bitbake-docs-changed",
>              properties=repos_dict_for_scheduler("docs"),
>              builderNames=["docs"]))
>  
> -# Run meta-webosose for kirkstone once a week on weekends (2am on Friday)
> +# Run meta-webosose for kirkstone and scarthgap once a week on weekends (2am on Friday)
>  schedulers.append(sched.Nightly(name='nightly-meta-webosose', branch='kirkstone', properties=parent_default_props('meta-webosose', 'kirkstone'),
>                                  codebases = {'' : {'branch' : 'kirkstone'}},
>                                  builderNames=['meta-webosose'], hour=2, minute=0, dayOfWeek=4))
> +schedulers.append(sched.Nightly(name='nightly-meta-webosose', branch='scarthgap', properties=parent_default_props('meta-webosose', 'scarthgap'),
> +                                codebases = {'' : {'branch' : 'scarthgap'}},
> +                                builderNames=['meta-webosose'], hour=2, minute=0, dayOfWeek=4))

The patch breaks things since it has two schedulers with the same name.
I've tweaked the patch to fix that and applied it, sorry about the
delay.

Cheers,

Richard


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

end of thread, other threads:[~2025-05-14 10:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-29  2:16 [yocto-autobuilder2][PATCH] schedulers: add meta-webosose scheduled build for scarthgap hieu2.nguyen
2025-04-29  6:37 ` [yocto-patches] " Mathieu Dubois-Briand
2025-04-29  6:47   ` Martin Jansa
2025-04-29  8:35     ` Mathieu Dubois-Briand
2025-05-07 13:06       ` Hieu Van Nguyen
2025-05-14 10:00 ` [yocto-patches] " Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.