remove a timeout from CoreFactory for building gui

This commit is contained in:
pigeons 2017-01-16 21:18:20 -08:00
parent 6be204f3c5
commit a3c4fd14f1

View file

@ -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'))