Francois Gouget : testbot: Allow two VMs to be active at the same time.
Module: tools Branch: master Commit: 562784083371bb2ef3e59ccfb98aba43c8afbd35 URL: https://gitlab.winehq.org/winehq/tools/-/commit/562784083371bb2ef3e59ccfb98a... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Sun Oct 2 17:15:27 2022 +0200 testbot: Allow two VMs to be active at the same time. An active VM is one that is either idle, running tests or reverting. --- testbot/lib/WineTestBot/Config.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testbot/lib/WineTestBot/Config.pm b/testbot/lib/WineTestBot/Config.pm index 6f57995e..e0947b65 100644 --- a/testbot/lib/WineTestBot/Config.pm +++ b/testbot/lib/WineTestBot/Config.pm @@ -88,10 +88,10 @@ sub PrependPaths(@) $WineBugUrl = "https://bugs.winehq.org/show_bug.cgi?id="; # See the ScheduleOnHost() documentation in lib/WineTestBot/Jobs.pm -$MaxRevertingVMs = 1; -$MaxRevertsWhileRunningVMs = 0; +$MaxRevertingVMs = 2; +$MaxRevertsWhileRunningVMs = 1; $MaxActiveVMs = 2; -$MaxRunningVMs = 1; +$MaxRunningVMs = 2; $MaxVMsWhenIdle = undef; # How long to attempt to connect to the TestAgent while the VM is booting.
participants (1)
-
Alexandre Julliard