All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] conf/poky: add Fedora 30 and Opensuse Leap 15.1 to supported distributions
@ 2019-07-18 11:53 Ross Burton
  2019-07-28 11:14 ` Bas Mevissen
  0 siblings, 1 reply; 4+ messages in thread
From: Ross Burton @ 2019-07-18 11:53 UTC (permalink / raw)
  To: poky

Signed-off-by: Ross Burton <ross.burton@intel.com>
---
 meta-poky/conf/distro/poky.conf | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro/poky.conf
index 2d155d0de18..ac6368ddab1 100644
--- a/meta-poky/conf/distro/poky.conf
+++ b/meta-poky/conf/distro/poky.conf
@@ -56,11 +56,13 @@ SANITY_TESTED_DISTROS ?= " \
             ubuntu-18.04 \n \
             fedora-28 \n \
             fedora-29 \n \
+            fedora-30 \n \
             centos-7 \n \
             debian-8 \n \
             debian-9 \n \
             debian-10 \n \
             opensuse-42.3 \n \
+            opensuseleap-15.1 \n \
             "
 #
 # OELAYOUT_ABI allows us to notify users when the format of TMPDIR changes in
-- 
2.20.1



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

* Re: [PATCH] conf/poky: add Fedora 30 and Opensuse Leap 15.1 to supported distributions
  2019-07-18 11:53 [PATCH] conf/poky: add Fedora 30 and Opensuse Leap 15.1 to supported distributions Ross Burton
@ 2019-07-28 11:14 ` Bas Mevissen
  2019-07-28 12:00   ` Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Bas Mevissen @ 2019-07-28 11:14 UTC (permalink / raw)
  To: poky

On 18/07/2019 13:53, Ross Burton wrote:
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
>   meta-poky/conf/distro/poky.conf | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro/poky.conf
> index 2d155d0de18..ac6368ddab1 100644
> --- a/meta-poky/conf/distro/poky.conf
> +++ b/meta-poky/conf/distro/poky.conf
> @@ -56,11 +56,13 @@ SANITY_TESTED_DISTROS ?= " \
>               ubuntu-18.04 \n \
>               fedora-28 \n \

Better remove Fedora 28 as it is no longer supported. So probably it is 
hardly used any more, hence regressions will go undetected.

>               fedora-29 \n \
> +            fedora-30 \n \
>               centos-7 \n \
>               debian-8 \n \
>               debian-9 \n \
>               debian-10 \n \
>               opensuse-42.3 \n \
> +            opensuseleap-15.1 \n \
>               "
>   #
>   # OELAYOUT_ABI allows us to notify users when the format of TMPDIR changes in
> 

In general, I think that EOL distro versions should be removed after a 
while. Somewhere between 3 months (short-lived versions) and 6 months 
for long term supported versions.

It will not prohibit people from using older distro versions, but at 
least it gives a message that regressions or breakage is to be expected.

Regards,
-- 
Bas.


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

* Re: [PATCH] conf/poky: add Fedora 30 and Opensuse Leap 15.1 to supported distributions
  2019-07-28 11:14 ` Bas Mevissen
@ 2019-07-28 12:00   ` Richard Purdie
  2019-07-28 12:39     ` Bas Mevissen
  0 siblings, 1 reply; 4+ messages in thread
From: Richard Purdie @ 2019-07-28 12:00 UTC (permalink / raw)
  To: Bas Mevissen, poky

On Sun, 2019-07-28 at 13:14 +0200, Bas Mevissen wrote:
> On 18/07/2019 13:53, Ross Burton wrote:
> > Signed-off-by: Ross Burton <ross.burton@intel.com>
> > ---
> >   meta-poky/conf/distro/poky.conf | 2 ++
> >   1 file changed, 2 insertions(+)
> > 
> > diff --git a/meta-poky/conf/distro/poky.conf b/meta-
> > poky/conf/distro/poky.conf
> > index 2d155d0de18..ac6368ddab1 100644
> > --- a/meta-poky/conf/distro/poky.conf
> > +++ b/meta-poky/conf/distro/poky.conf
> > @@ -56,11 +56,13 @@ SANITY_TESTED_DISTROS ?= " \
> >               ubuntu-18.04 \n \
> >               fedora-28 \n \
> 
> Better remove Fedora 28 as it is no longer supported. So probably it
> is hardly used any more, hence regressions will go undetected.

This list matches the machines we actually test builds on:

https://autobuilder.yoctoproject.org/typhoon/#/workers

so we do still test f28 right now. We're in the process of bringing up
some new hardware and removing older machines so as that happens we'll
update the list.

> 
> >               fedora-29 \n \
> > +            fedora-30 \n \
> >               centos-7 \n \
> >               debian-8 \n \
> >               debian-9 \n \
> >               debian-10 \n \
> >               opensuse-42.3 \n \
> > +            opensuseleap-15.1 \n \
> >               "
> >   #
> >   # OELAYOUT_ABI allows us to notify users when the format of
> > TMPDIR changes in
> > 
> 
> In general, I think that EOL distro versions should be removed after
> a while. Somewhere between 3 months (short-lived versions) and 6
> months for long term supported versions.
> 
> It will not prohibit people from using older distro versions, but at 
> least it gives a message that regressions or breakage is to be
> expected.

We try and ensure this list matches what we're actually testing.

Cheers,

Richard




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

* Re: [PATCH] conf/poky: add Fedora 30 and Opensuse Leap 15.1 to supported distributions
  2019-07-28 12:00   ` Richard Purdie
@ 2019-07-28 12:39     ` Bas Mevissen
  0 siblings, 0 replies; 4+ messages in thread
From: Bas Mevissen @ 2019-07-28 12:39 UTC (permalink / raw)
  To: Richard Purdie, poky

On 28/07/2019 14:00, Richard Purdie wrote:
> On Sun, 2019-07-28 at 13:14 +0200, Bas Mevissen wrote:
>> On 18/07/2019 13:53, Ross Burton wrote:
>>> Signed-off-by: Ross Burton <ross.burton@intel.com>
>>> ---
>>>    meta-poky/conf/distro/poky.conf | 2 ++
>>>    1 file changed, 2 insertions(+)
>>>
>>> diff --git a/meta-poky/conf/distro/poky.conf b/meta-
>>> poky/conf/distro/poky.conf
>>> index 2d155d0de18..ac6368ddab1 100644
>>> --- a/meta-poky/conf/distro/poky.conf
>>> +++ b/meta-poky/conf/distro/poky.conf
>>> @@ -56,11 +56,13 @@ SANITY_TESTED_DISTROS ?= " \
>>>                ubuntu-18.04 \n \
>>>                fedora-28 \n \
>>
>> Better remove Fedora 28 as it is no longer supported. So probably it
>> is hardly used any more, hence regressions will go undetected.
> 
> This list matches the machines we actually test builds on:
> 
> https://autobuilder.yoctoproject.org/typhoon/#/workers
> 
> so we do still test f28 right now. We're in the process of bringing up
> some new hardware and removing older machines so as that happens we'll
> update the list.
> 

Ok, clear.

>>
>>>                fedora-29 \n \
>>> +            fedora-30 \n \
>>>                centos-7 \n \
>>>                debian-8 \n \
>>>                debian-9 \n \
>>>                debian-10 \n \
>>>                opensuse-42.3 \n \
>>> +            opensuseleap-15.1 \n \
>>>                "
>>>    #
>>>    # OELAYOUT_ABI allows us to notify users when the format of
>>> TMPDIR changes in
>>>
>>
>> In general, I think that EOL distro versions should be removed after
>> a while. Somewhere between 3 months (short-lived versions) and 6
>> months for long term supported versions.
>>
>> It will not prohibit people from using older distro versions, but at
>> least it gives a message that regressions or breakage is to be
>> expected.
> 
> We try and ensure this list matches what we're actually testing.
> 

That seems a good approach to me.

> Cheers,
> 
> Richard
> 
> 


-- 
Bas.


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

end of thread, other threads:[~2019-07-28 12:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-18 11:53 [PATCH] conf/poky: add Fedora 30 and Opensuse Leap 15.1 to supported distributions Ross Burton
2019-07-28 11:14 ` Bas Mevissen
2019-07-28 12:00   ` Richard Purdie
2019-07-28 12:39     ` Bas Mevissen

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.