Lower default benchmarking numbers to make CI timeout

This commit is contained in:
Stephen Akridge 2018-06-28 20:22:54 -07:00 committed by Greg Fitzgerald
parent 8effa4e3e0
commit a094507bb8
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ steps:
- wait
- command: "ci/docker-run.sh rustlang/rust:nightly ci/test-nightly.sh"
name: "nightly [public]"
timeout_in_minutes: 20
timeout_in_minutes: 30
- command: "ci/test-stable-perf.sh"
name: "stable-perf [public]"
timeout_in_minutes: 20

View File

@ -297,7 +297,7 @@ mod bench {
#[bench]
fn bench_banking_stage_multi_accounts(bencher: &mut Bencher) {
logger::setup();
let tx = 30_000_usize;
let tx = 10_000_usize;
let mint_total = 1_000_000_000_000;
let mint = Mint::new(mint_total);
let num_dst_accounts = 8 * 1024;
@ -385,7 +385,7 @@ mod bench {
#[bench]
fn bench_banking_stage_single_from(bencher: &mut Bencher) {
logger::setup();
let tx = 20_000_usize;
let tx = 10_000_usize;
let mint = Mint::new(1_000_000_000_000);
let mut pubkeys = Vec::new();
let num_keys = 8;