mirror of
https://github.com/monero-project/meta.git
synced 2025-01-30 22:45:52 +00:00
Merge pull request #37 from danrmiller/benchmark-timeout
remove timeout from kovri benchmark step. Resolves #34
This commit is contained in:
commit
6be204f3c5
1 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue