From f4c63ff865b1ddbfd6badc93680176f209a2aa96 Mon Sep 17 00:00:00 2001 From: pigeons <pigeons> Date: Tue, 3 Jan 2017 11:21:47 -0800 Subject: [PATCH] remove timeout from kovri benchmark step. Resolves #34 --- buildbot/master/master.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildbot/master/master.cfg b/buildbot/master/master.cfg index 68152a1..6a14f5a 100644 --- a/buildbot/master/master.cfg +++ b/buildbot/master/master.cfg @@ -229,14 +229,14 @@ kovriAllFactory.addStep(steps.Git(repourl='https://github.com/monero-project/kov kovriAllFactory.addStep(steps.Compile(command=["make", "all-options"])) kovriAllFactory.addStep(steps.Compile(name="compile tests", command=["make", "tests"])) kovriAllFactory.addStep(steps.Test(command=["./build/kovri-tests"])) -kovriAllFactory.addStep(steps.Test(name="benchmark", command=["./build/kovri-benchmarks"])) +kovriAllFactory.addStep(steps.Test(name="benchmark", timeout=None, command=["./build/kovri-benchmarks"])) kovriArmFactory = util.BuildFactory() kovriArmFactory.addStep(steps.Git(repourl='https://github.com/monero-project/kovri.git', mode='full', submodules=True)) kovriArmFactory.addStep(steps.Compile(command=["make", "all-options"], env={'CC': 'clang35', 'CXX': 'clang++35'})) kovriArmFactory.addStep(steps.Compile(name="compile tests", command=["make", "tests"], env={'CC': 'clang35', 'CXX': 'clang++35'})) kovriArmFactory.addStep(steps.Test(command=["./build/kovri-tests"])) -kovriArmFactory.addStep(steps.Test(name="benchmark", command=["./build/kovri-benchmarks"])) +kovriArmFactory.addStep(steps.Test(name="benchmark", timeout=None, command=["./build/kovri-benchmarks"])) kovriUbuntu64Factory = util.BuildFactory() kovriUbuntu64Factory.addStep(steps.Git(repourl='https://github.com/monero-project/kovri.git', mode='full', submodules=True))