From patchwork Sun Nov 8 09:09:23 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [yocto-autobuilder2] schedulers.py: run performance builds only 2x a day, not 4x From: Alexander Kanavin X-Patchwork-Id: 177815 Message-Id: <20201108090923.3079-1-alex.kanavin@gmail.com> To: yocto@yoctoproject.org Cc: Alexander Kanavin Date: Sun, 8 Nov 2020 10:09:23 +0100 The same builds are included in a-full, so they tend to get queued up and cause delays in builds completion, as there's only a single worker allocated to them. Let's run them less frequently to mitigate the delays. Signed-off-by: Alexander Kanavin --- schedulers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/schedulers.py b/schedulers.py index 2e8f3d5..ca63c9f 100644 --- a/schedulers.py +++ b/schedulers.py @@ -306,11 +306,11 @@ schedulers.append(sched.Nightly(name='nightly-quick', branch='master', propertie schedulers.append(sched.Nightly(name='nightly-full', branch='master', properties=parent_default_props('a-full'), builderNames=['a-full'], hour=1, minute=0, dayOfWeek=6)) -# Run the build performance tests at 3am, 9am, 3pm and 9pm +# Run the build performance tests at 3am and 3pm schedulers.append(sched.Nightly(name='nightly-buildperf-ubuntu1604', branch='master', properties=parent_default_props('buildperf-ubuntu1604'), - builderNames=['buildperf-ubuntu1604'], hour=[3,9,15,21], minute=0)) + builderNames=['buildperf-ubuntu1604'], hour=[3,15], minute=0)) schedulers.append(sched.Nightly(name='nightly-buildperf-centos7', branch='master', properties=parent_default_props('buildperf-centos7'), - builderNames=['buildperf-centos7'], hour=[3,9,15,21], minute=0)) + builderNames=['buildperf-centos7'], hour=[3,15], minute=0)) # Run the AUH on the 15th of every month schedulers.append(sched.Nightly(name='nightly-auh', branch='master', properties=parent_default_props('auh'),