From a3c4fd14f16a3702bec877d4352efe05bcb371a7 Mon Sep 17 00:00:00 2001 From: pigeons Date: Mon, 16 Jan 2017 21:18:20 -0800 Subject: [PATCH] remove a timeout from CoreFactory for building gui --- buildbot/master/master.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot/master/master.cfg b/buildbot/master/master.cfg index e218a48..4ad5212 100644 --- a/buildbot/master/master.cfg +++ b/buildbot/master/master.cfg @@ -205,7 +205,7 @@ win64ReleaseFactory.addStep(steps.FileUpload(slavesrc=WithProperties("monero-%(g coreFactory = util.BuildFactory() coreFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-core.git', mode='full')) -coreFactory.addStep(steps.Compile(command = ["bash", "-ex", "build.sh"])) +coreFactory.addStep(steps.Compile(command = ["bash", "-ex", "build.sh"], timeout=None)) coreOsxFactory = util.BuildFactory() coreOsxFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-core.git', mode='full'))