* [PATCH 1/3] ref-manual/variables: document OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS @ 2025-02-06 13:18 Yoann Congal 2025-02-06 13:18 ` [PATCH 2/3] reproducible-builds: change/add titles in the "How" section Yoann Congal 2025-02-06 13:18 ` [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables Yoann Congal 0 siblings, 2 replies; 10+ messages in thread From: Yoann Congal @ 2025-02-06 13:18 UTC (permalink / raw) To: docs; +Cc: Yoann Congal, Guillaume Swaenepoel From: Yoann Congal <yoann.congal@smile.fr> This documents the variable used in the "automate testing a single recipe's reproducibility" feature [YOCTO #15701] Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> --- documentation/ref-manual/variables.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index 47d4e814f..32e91b6db 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst @@ -5802,6 +5802,11 @@ system and gives an overview of their function and contents. For additional information on how this variable is used, see the initialization script. + :term:`OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS` + Set build target for build reproducibility testing but activate + :ref:`shared state <overview-manual/concepts:shared state cache>` build + for most dependencies. See :doc:`/test-manual/reproducible-builds`. + :term:`OEQA_REPRODUCIBLE_TEST_PACKAGE` Set the package manager(s) for build reproducibility testing. See :yocto_git:`reproducible.py </poky/tree/meta/lib/oeqa/selftest/cases/reproducible.py>` ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/3] reproducible-builds: change/add titles in the "How" section 2025-02-06 13:18 [PATCH 1/3] ref-manual/variables: document OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS Yoann Congal @ 2025-02-06 13:18 ` Yoann Congal 2025-02-06 13:18 ` [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables Yoann Congal 1 sibling, 0 replies; 10+ messages in thread From: Yoann Congal @ 2025-02-06 13:18 UTC (permalink / raw) To: docs; +Cc: Yoann Congal, Guillaume Swaenepoel From: Yoann Congal <yoann.congal@smile.fr> This is preparation work for the following commit. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> --- documentation/test-manual/reproducible-builds.rst | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/documentation/test-manual/reproducible-builds.rst b/documentation/test-manual/reproducible-builds.rst index aaf2e4541..b9f671d68 100644 --- a/documentation/test-manual/reproducible-builds.rst +++ b/documentation/test-manual/reproducible-builds.rst @@ -122,9 +122,12 @@ The project's current reproducibility status can be seen at You can also check the reproducibility status on the Autobuilder: :yocto_ab:`/valkyrie/#/builders/reproducible`. -=============================== -Can I test my layer or recipes? -=============================== +=================================== +How can I test my layer or recipes? +=================================== + +With world build +~~~~~~~~~~~~~~~~ Once again, you can run a ``world`` test using the :ref:`oe-selftest <ref-manual/release-process:Testing and Quality Assurance>` @@ -132,6 +135,9 @@ command provided above. This functionality is implemented in :oe_git:`meta/lib/oeqa/selftest/cases/reproducible.py </openembedded-core/tree/meta/lib/oeqa/selftest/cases/reproducible.py>`. +Subclassing the test +~~~~~~~~~~~~~~~~~~~~ + You could subclass the test and change ``targets`` to a different target. You may also change ``sstate_targets`` which would allow you to "pre-cache" some ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables 2025-02-06 13:18 [PATCH 1/3] ref-manual/variables: document OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS Yoann Congal 2025-02-06 13:18 ` [PATCH 2/3] reproducible-builds: change/add titles in the "How" section Yoann Congal @ 2025-02-06 13:18 ` Yoann Congal 2025-02-06 16:08 ` [docs] " Quentin Schulz 1 sibling, 1 reply; 10+ messages in thread From: Yoann Congal @ 2025-02-06 13:18 UTC (permalink / raw) To: docs; +Cc: Yoann Congal, Guillaume Swaenepoel From: Yoann Congal <yoann.congal@smile.fr> Shows an example of the new variable OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS and still mention OEQA_REPRODUCIBLE_TEST_TARGET/SSTATE_TARGETS that were shown earlier. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> --- .../test-manual/reproducible-builds.rst | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/documentation/test-manual/reproducible-builds.rst b/documentation/test-manual/reproducible-builds.rst index b9f671d68..909ac5216 100644 --- a/documentation/test-manual/reproducible-builds.rst +++ b/documentation/test-manual/reproducible-builds.rst @@ -145,3 +145,21 @@ set of recipes before the test, meaning they are excluded from reproducibility testing. As a practical example, you could set ``sstate_targets`` to ``core-image-sato``, then setting ``targets`` to ``core-image-sato-sdk`` would run reproducibility tests only on the targets belonging only to ``core-image-sato-sdk``. + +Using OEQA_REPRODUCIBLE_TEST_* variables +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +If you want to test the reproducibility of a set of recipe, you can define +:term:`OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS`, in your local.conf:: + + OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS = "my-recipe" + +This will test the reproducibility of ``my-recipe`` but will use the +:ref:`Shared State <overview-manual/concepts:Shared State>` for most its +dependencies. + +You can have finer control on the test with: + +- :term:`OEQA_REPRODUCIBLE_TEST_TARGET`: lists recipes to be built, +- :term:`OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS`: lists recipes that will + be built using :ref:`Shared State <overview-manual/concepts:Shared State>`. ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [docs] [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables 2025-02-06 13:18 ` [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables Yoann Congal @ 2025-02-06 16:08 ` Quentin Schulz 2025-02-06 18:17 ` Yoann Congal 0 siblings, 1 reply; 10+ messages in thread From: Quentin Schulz @ 2025-02-06 16:08 UTC (permalink / raw) To: yoann.congal, docs; +Cc: Guillaume Swaenepoel Hi Yoann, On 2/6/25 2:18 PM, Yoann Congal via lists.yoctoproject.org wrote: > From: Yoann Congal <yoann.congal@smile.fr> > > Shows an example of the new variable OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS > and still mention OEQA_REPRODUCIBLE_TEST_TARGET/SSTATE_TARGETS that were > shown earlier. > > Signed-off-by: Yoann Congal <yoann.congal@smile.fr> > Reviewed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> > --- > .../test-manual/reproducible-builds.rst | 18 ++++++++++++++++++ > 1 file changed, 18 insertions(+) > > diff --git a/documentation/test-manual/reproducible-builds.rst b/documentation/test-manual/reproducible-builds.rst > index b9f671d68..909ac5216 100644 > --- a/documentation/test-manual/reproducible-builds.rst > +++ b/documentation/test-manual/reproducible-builds.rst > @@ -145,3 +145,21 @@ set of recipes before the test, meaning they are excluded from reproducibility > testing. As a practical example, you could set ``sstate_targets`` to > ``core-image-sato``, then setting ``targets`` to ``core-image-sato-sdk`` would > run reproducibility tests only on the targets belonging only to ``core-image-sato-sdk``. > + > +Using OEQA_REPRODUCIBLE_TEST_* variables I think it'd make sense here to tick-quote OEQA_REPRODUCIBLE_TEST_*? > +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > + > +If you want to test the reproducibility of a set of recipe, you can define s/recipe/recipes/ > +:term:`OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS`, in your local.conf:: > + > + OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS = "my-recipe" > + We align by three whitespaces, and I think it's four here if my eyes don't fail me? > +This will test the reproducibility of ``my-recipe`` but will use the > +:ref:`Shared State <overview-manual/concepts:Shared State>` for most its > +dependencies. > + > +You can have finer control on the test with: > + > +- :term:`OEQA_REPRODUCIBLE_TEST_TARGET`: lists recipes to be built, Reading this I'm wondering if this includes the recipes that will be built using sstate-cache as well, i.e. all recipes that will be built? Cheers, Quentin ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [docs] [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables 2025-02-06 16:08 ` [docs] " Quentin Schulz @ 2025-02-06 18:17 ` Yoann Congal 2025-02-07 9:12 ` Quentin Schulz 0 siblings, 1 reply; 10+ messages in thread From: Yoann Congal @ 2025-02-06 18:17 UTC (permalink / raw) To: Quentin Schulz, docs; +Cc: Guillaume Swaenepoel Le 06/02/2025 à 17:08, Quentin Schulz a écrit : > Hi Yoann, > > On 2/6/25 2:18 PM, Yoann Congal via lists.yoctoproject.org wrote: >> From: Yoann Congal <yoann.congal@smile.fr> >> >> Shows an example of the new variable OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS >> and still mention OEQA_REPRODUCIBLE_TEST_TARGET/SSTATE_TARGETS that were >> shown earlier. >> >> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> >> Reviewed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> >> --- >> .../test-manual/reproducible-builds.rst | 18 ++++++++++++++++++ >> 1 file changed, 18 insertions(+) >> >> diff --git a/documentation/test-manual/reproducible-builds.rst b/ >> documentation/test-manual/reproducible-builds.rst >> index b9f671d68..909ac5216 100644 >> --- a/documentation/test-manual/reproducible-builds.rst >> +++ b/documentation/test-manual/reproducible-builds.rst >> @@ -145,3 +145,21 @@ set of recipes before the test, meaning they are >> excluded from reproducibility >> testing. As a practical example, you could set ``sstate_targets`` to >> ``core-image-sato``, then setting ``targets`` to ``core-image-sato- >> sdk`` would >> run reproducibility tests only on the targets belonging only to >> ``core-image-sato-sdk``. >> + >> +Using OEQA_REPRODUCIBLE_TEST_* variables > > I think it'd make sense here to tick-quote OEQA_REPRODUCIBLE_TEST_*? I agree, I'll modify for v2. FYI, on my build, it renders as italics. >> +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >> + >> +If you want to test the reproducibility of a set of recipe, you can >> define > > s/recipe/recipes/ Right, I'll modify for v2. > >> +:term:`OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS`, in your local.conf:: >> + >> + OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS = "my-recipe" >> + > > We align by three whitespaces, and I think it's four here if my eyes > don't fail me? Rhaa, nice catch, I did count these at some point. I'll modify for v2. >> +This will test the reproducibility of ``my-recipe`` but will use the >> +:ref:`Shared State <overview-manual/concepts:Shared State>` for most its >> +dependencies. >> + >> +You can have finer control on the test with: >> + >> +- :term:`OEQA_REPRODUCIBLE_TEST_TARGET`: lists recipes to be built, > > Reading this I'm wondering if this includes the recipes that will be > built using sstate-cache as well, i.e. all recipes that will be built? OEQA_REPRODUCIBLE_TEST_TARGET is the list of all recipes to build twice (once with sstate globally enabled, once with sstate globally disabled) Before the second build, the OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS set of recipes will be built using sstate so that the second build (without sstate) does not have to build them from scratch. We usually want OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS to be a subset of the dependencies of OEQA_REPRODUCIBLE_TEST_TARGET but it not enforced by the test. Thanks for your attention to detail (seriously)! > Cheers, > Quentin -- Yoann Congal Smile ECS - Tech Expert ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [docs] [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables 2025-02-06 18:17 ` Yoann Congal @ 2025-02-07 9:12 ` Quentin Schulz 2025-02-09 22:46 ` Yoann Congal 0 siblings, 1 reply; 10+ messages in thread From: Quentin Schulz @ 2025-02-07 9:12 UTC (permalink / raw) To: Yoann Congal, docs; +Cc: Guillaume Swaenepoel Hi Yoann, On 2/6/25 7:17 PM, Yoann Congal wrote: > > > Le 06/02/2025 à 17:08, Quentin Schulz a écrit : >> Hi Yoann, >> >> On 2/6/25 2:18 PM, Yoann Congal via lists.yoctoproject.org wrote: >>> From: Yoann Congal <yoann.congal@smile.fr> >>> >>> Shows an example of the new variable OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS >>> and still mention OEQA_REPRODUCIBLE_TEST_TARGET/SSTATE_TARGETS that were >>> shown earlier. >>> >>> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> >>> Reviewed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> Since this is your v1, I believe you're not allowed to provide Reviewed-by/Acked-by/Tested-by/etc... given privately. Guillaume should give their Reviewed-by on the mailing list before you can add it. [...] >>> +This will test the reproducibility of ``my-recipe`` but will use the >>> +:ref:`Shared State <overview-manual/concepts:Shared State>` for most its >>> +dependencies. >>> + >>> +You can have finer control on the test with: >>> + >>> +- :term:`OEQA_REPRODUCIBLE_TEST_TARGET`: lists recipes to be built, >> >> Reading this I'm wondering if this includes the recipes that will be >> built using sstate-cache as well, i.e. all recipes that will be built? > > OEQA_REPRODUCIBLE_TEST_TARGET is the list of all recipes to build twice > (once with sstate globally enabled, once with sstate globally disabled) > > Before the second build, the OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS set > of recipes will be built using sstate so that the second build (without > sstate) does not have to build them from scratch. > This is actually documented at the end of https://docs.yoctoproject.org/test-manual/reproducible-builds.html#can-we-prove-the-project-is-reproducible. I feel like a reminder wouldn't be too bad of an idea in this section even though it follows the one it's explained in, but not a requirement per-se, up to you. > We usually want OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS to be a subset of > the dependencies of OEQA_REPRODUCIBLE_TEST_TARGET but it not enforced by > the test. > If my understand is correct, OEQA_REPRODUCIBLE_TEST_TARGET could be a recipe A and OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS could be dependencies of that recipe A, so it's not necessarily a subset? But they should relate otherwise they are noop? Thanks for the explanation! Cheers, Quentin ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [docs] [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables 2025-02-07 9:12 ` Quentin Schulz @ 2025-02-09 22:46 ` Yoann Congal 2025-02-10 12:11 ` Antonin Godard 2025-02-10 17:52 ` Quentin Schulz 0 siblings, 2 replies; 10+ messages in thread From: Yoann Congal @ 2025-02-09 22:46 UTC (permalink / raw) To: Quentin Schulz, docs; +Cc: Guillaume Swaenepoel Le 07/02/2025 à 10:12, Quentin Schulz a écrit : > Hi Yoann, Hi, > On 2/6/25 7:17 PM, Yoann Congal wrote: >> Le 06/02/2025 à 17:08, Quentin Schulz a écrit : >>> Hi Yoann, >>> >>> On 2/6/25 2:18 PM, Yoann Congal via lists.yoctoproject.org wrote: >>>> From: Yoann Congal <yoann.congal@smile.fr> >>>> >>>> Shows an example of the new variable >>>> OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS >>>> and still mention OEQA_REPRODUCIBLE_TEST_TARGET/SSTATE_TARGETS that >>>> were >>>> shown earlier. >>>> >>>> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> >>>> Reviewed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> > > Since this is your v1, I believe you're not allowed to provide Reviewed- > by/Acked-by/Tested-by/etc... given privately. Guillaume should give > their Reviewed-by on the mailing list before you can add it. I did not know this was a thing. I did private reviews (with my Reviewed-By) for my coworkers for more than 2 years now and nobody told me. I'll remove it for v3. > [...] >>>> +This will test the reproducibility of ``my-recipe`` but will use the >>>> +:ref:`Shared State <overview-manual/concepts:Shared State>` for >>>> most its >>>> +dependencies. >>>> + >>>> +You can have finer control on the test with: >>>> + >>>> +- :term:`OEQA_REPRODUCIBLE_TEST_TARGET`: lists recipes to be built, >>> >>> Reading this I'm wondering if this includes the recipes that will be >>> built using sstate-cache as well, i.e. all recipes that will be built? >> >> OEQA_REPRODUCIBLE_TEST_TARGET is the list of all recipes to build twice >> (once with sstate globally enabled, once with sstate globally disabled) >> >> Before the second build, the OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS set >> of recipes will be built using sstate so that the second build (without >> sstate) does not have to build them from scratch. >> > > This is actually documented at the end of https://docs.yoctoproject.org/ > test-manual/reproducible-builds.html#can-we-prove-the-project-is- > reproducible. I feel like a reminder wouldn't be too bad of an idea in > this section even though it follows the one it's explained in, but not a > requirement per-se, up to you. My current ticket (https://bugzilla.yoctoproject.org/show_bug.cgi?id=15701#c3) include to rework how the test is implemented. I will sent patch to the doc to explain the new implementation when merged. >> We usually want OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS to be a subset of >> the dependencies of OEQA_REPRODUCIBLE_TEST_TARGET but it not enforced by >> the test. >> > > If my understand is correct, OEQA_REPRODUCIBLE_TEST_TARGET could be a > recipe A and OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS could be dependencies > of that recipe A, so it's not necessarily a subset? But they should > relate otherwise they are noop? If OEQA_REPRODUCIBLE_TEST_SSTATE_TARGETS is not a subset of the whole dependency tree of OEQA_REPRODUCIBLE_TEST_TARGET, they still will be built using sstate during the prebuild phase of reproducibleB but that won't decrease build time of reproducibleB, thus globally increasing build time (ie worse than noop). > Thanks for the explanation! > > Cheers, > Quentin -- Yoann Congal Smile ECS - Tech Expert . ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [docs] [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables 2025-02-09 22:46 ` Yoann Congal @ 2025-02-10 12:11 ` Antonin Godard 2025-02-10 17:52 ` Quentin Schulz 1 sibling, 0 replies; 10+ messages in thread From: Antonin Godard @ 2025-02-10 12:11 UTC (permalink / raw) To: yoann.congal, Quentin Schulz, docs; +Cc: Guillaume Swaenepoel Hi Yoann, On Sun Feb 9, 2025 at 11:46 PM CET, Yoann Congal via lists.yoctoproject.org wrote: > Le 07/02/2025 à 10:12, Quentin Schulz a écrit : >> Hi Yoann, > > Hi, > >> On 2/6/25 7:17 PM, Yoann Congal wrote: >>> Le 06/02/2025 à 17:08, Quentin Schulz a écrit : >>>> Hi Yoann, >>>> >>>> On 2/6/25 2:18 PM, Yoann Congal via lists.yoctoproject.org wrote: >>>>> From: Yoann Congal <yoann.congal@smile.fr> >>>>> >>>>> Shows an example of the new variable >>>>> OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS >>>>> and still mention OEQA_REPRODUCIBLE_TEST_TARGET/SSTATE_TARGETS that >>>>> were >>>>> shown earlier. >>>>> >>>>> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> >>>>> Reviewed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> >> >> Since this is your v1, I believe you're not allowed to provide Reviewed- >> by/Acked-by/Tested-by/etc... given privately. Guillaume should give >> their Reviewed-by on the mailing list before you can add it. > > I did not know this was a thing. > I did private reviews (with my Reviewed-By) for my coworkers for more > than 2 years now and nobody told me. > > I'll remove it for v3. Also, if you add a cover letter to the series, and if Guillaume sends their Reviewed-by in reply to the cover-letter, it counts for the whole series. At least, that's how b4 behaves on my side when applying the patches. So Guillaume doesn't have to reply to each email. :) Antonin -- Antonin Godard, Bootlin Embedded Linux and Kernel engineering https://bootlin.com ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [docs] [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables 2025-02-09 22:46 ` Yoann Congal 2025-02-10 12:11 ` Antonin Godard @ 2025-02-10 17:52 ` Quentin Schulz 2025-02-11 23:37 ` Yoann Congal 1 sibling, 1 reply; 10+ messages in thread From: Quentin Schulz @ 2025-02-10 17:52 UTC (permalink / raw) To: Yoann Congal, docs; +Cc: Guillaume Swaenepoel Hi Yoann, On 2/9/25 11:46 PM, Yoann Congal wrote: > Le 07/02/2025 à 10:12, Quentin Schulz a écrit : >> Hi Yoann, > > Hi, > >> On 2/6/25 7:17 PM, Yoann Congal wrote: >>> Le 06/02/2025 à 17:08, Quentin Schulz a écrit : >>>> Hi Yoann, >>>> >>>> On 2/6/25 2:18 PM, Yoann Congal via lists.yoctoproject.org wrote: >>>>> From: Yoann Congal <yoann.congal@smile.fr> >>>>> >>>>> Shows an example of the new variable >>>>> OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS >>>>> and still mention OEQA_REPRODUCIBLE_TEST_TARGET/SSTATE_TARGETS that >>>>> were >>>>> shown earlier. >>>>> >>>>> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> >>>>> Reviewed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> >> >> Since this is your v1, I believe you're not allowed to provide Reviewed- >> by/Acked-by/Tested-by/etc... given privately. Guillaume should give >> their Reviewed-by on the mailing list before you can add it. > > I did not know this was a thing. > I did private reviews (with my Reviewed-By) for my coworkers for more > than 2 years now and nobody told me. > Coming from colleagues, it's less fishy but I've recently seen patches with Reviewed-by from maintainers in v1 of contributors where the maintainers didn't know anything about the patch. A Reviewed-by is a mark of trust that shouldn't be given lightly, so when it is given, it is helping the maintainer(s) making the decision whether to take the patch or not. Unless it is given publicly (hence "guaranteeing" the person who gives their Reviewed-by is the person they claim they are by the mail address they sent the mail from (though it's not a necessity, I sometimes give Reviewed-by: <personal-address> from my <company-address>)), there's nothing guaranteeing that this person actually reviewed the code. For the docs, the impact of impersonating someone in Reviewed-by is clearly not a big deal :) Cheers, Quentin ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [docs] [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables 2025-02-10 17:52 ` Quentin Schulz @ 2025-02-11 23:37 ` Yoann Congal 0 siblings, 0 replies; 10+ messages in thread From: Yoann Congal @ 2025-02-11 23:37 UTC (permalink / raw) To: Quentin Schulz; +Cc: docs, Guillaume Swaenepoel [-- Attachment #1: Type: text/plain, Size: 2230 bytes --] Le lun. 10 févr. 2025 à 18:52, Quentin Schulz <quentin.schulz@cherry.de> a écrit : > Hi Yoann, > > On 2/9/25 11:46 PM, Yoann Congal wrote: > > Le 07/02/2025 à 10:12, Quentin Schulz a écrit : > >> Hi Yoann, > > > > Hi, > > > >> On 2/6/25 7:17 PM, Yoann Congal wrote: > >>> Le 06/02/2025 à 17:08, Quentin Schulz a écrit : > >>>> Hi Yoann, > >>>> > >>>> On 2/6/25 2:18 PM, Yoann Congal via lists.yoctoproject.org wrote: > >>>>> From: Yoann Congal <yoann.congal@smile.fr> > >>>>> > >>>>> Shows an example of the new variable > >>>>> OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS > >>>>> and still mention OEQA_REPRODUCIBLE_TEST_TARGET/SSTATE_TARGETS that > >>>>> were > >>>>> shown earlier. > >>>>> > >>>>> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> > >>>>> Reviewed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> > >> > >> Since this is your v1, I believe you're not allowed to provide Reviewed- > >> by/Acked-by/Tested-by/etc... given privately. Guillaume should give > >> their Reviewed-by on the mailing list before you can add it. > > > > I did not know this was a thing. > > I did private reviews (with my Reviewed-By) for my coworkers for more > > than 2 years now and nobody told me. > > > > Coming from colleagues, it's less fishy but I've recently seen patches > with Reviewed-by from maintainers in v1 of contributors where the > maintainers didn't know anything about the patch. A Reviewed-by is a > mark of trust that shouldn't be given lightly, so when it is given, it > is helping the maintainer(s) making the decision whether to take the > patch or not. Unless it is given publicly (hence "guaranteeing" the > person who gives their Reviewed-by is the person they claim they are by > the mail address they sent the mail from (though it's not a necessity, I > sometimes give Reviewed-by: <personal-address> from my > <company-address>)), there's nothing guaranteeing that this person > actually reviewed the code. For the docs, the impact of impersonating > someone in Reviewed-by is clearly not a big deal :) > Thanks for the explanation, I'll update the way we do that here. > Cheers, > Quentin > -- Yoann Congal Smile ECS - Tech expert [-- Attachment #2: Type: text/html, Size: 3626 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-02-11 23:38 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-06 13:18 [PATCH 1/3] ref-manual/variables: document OEQA_REPRODUCIBLE_TEST_LEAF_TARGETS Yoann Congal 2025-02-06 13:18 ` [PATCH 2/3] reproducible-builds: change/add titles in the "How" section Yoann Congal 2025-02-06 13:18 ` [PATCH 3/3] reproducible-builds: add a "How to" section with OEQA* variables Yoann Congal 2025-02-06 16:08 ` [docs] " Quentin Schulz 2025-02-06 18:17 ` Yoann Congal 2025-02-07 9:12 ` Quentin Schulz 2025-02-09 22:46 ` Yoann Congal 2025-02-10 12:11 ` Antonin Godard 2025-02-10 17:52 ` Quentin Schulz 2025-02-11 23:37 ` Yoann Congal
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.