Francois Gouget : testbot: Add a ModuleBuild check in GetPatchImpacts().
Module: tools Branch: master Commit: fa8080c7e9f3013d26ab6f1c26f7fe03488df840 URL: https://source.winehq.org/git/tools.git/?a=commit;h=fa8080c7e9f3013d26ab6f1c... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Fri Sep 21 10:35:22 2018 +0200 testbot: Add a ModuleBuild check in GetPatchImpacts(). Patches that impact a single module can impact the Wine files list too. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- testbot/lib/WineTestBot/PatchUtils.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testbot/lib/WineTestBot/PatchUtils.pm b/testbot/lib/WineTestBot/PatchUtils.pm index 9e0e689..602c80b 100644 --- a/testbot/lib/WineTestBot/PatchUtils.pm +++ b/testbot/lib/WineTestBot/PatchUtils.pm @@ -279,7 +279,8 @@ sub GetPatchImpacts($;$) if ($PastImpacts) { - if ($PastImpacts->{WineBuild} or $PastImpacts->{TestBuild}) + if ($PastImpacts->{WineBuild} or $PastImpacts->{ModuleBuild} or + $PastImpacts->{TestBuild}) { # Update the list of Wine files so we correctly recognize patchset parts # that modify new Wine files.
participants (1)
-
Alexandre Julliard