[PATCH] testbot: Fix the Type of the Wine VM steps.

Francois Gouget fgouget at codeweavers.com
Thu Jul 12 09:53:16 CDT 2018


The default Step type is 'single' but for Wine VMs it should be a
'build' step. Fortunately it is not checked (yet).

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
 testbot/lib/WineTestBot/Patches.pm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/testbot/lib/WineTestBot/Patches.pm b/testbot/lib/WineTestBot/Patches.pm
index 87f211731..23b921740 100644
--- a/testbot/lib/WineTestBot/Patches.pm
+++ b/testbot/lib/WineTestBot/Patches.pm
@@ -246,6 +246,7 @@ sub Submit($$$)
     my $NewStep = $NewJob->Steps->Add();
     $NewStep->FileName("patch.diff");
     $NewStep->FileType("patch");
+    $NewStep->Type("build");
     $NewStep->DebugLevel(0);
 
     # And a task for each VM
-- 
2.18.0




More information about the wine-devel mailing list