Merge pull request #37 from danrmiller/benchmark-timeout

remove timeout from kovri benchmark step. Resolves #34
This commit is contained in:
luigi1111 2017-01-09 17:59:30 -06:00 committed by GitHub
commit 6be204f3c5

View file

@ -248,14 +248,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))