Skip to content

Commit

Permalink
Fix nightly
Browse files Browse the repository at this point in the history
No longer ignore failures in the nightly build.
  • Loading branch information
garious committed Jun 20, 2018
1 parent 4ecd2c9 commit 1c97bf5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ci/buildkite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ steps:
- command: "ci/coverage.sh"
name: "coverage [public]"
timeout_in_minutes: 20
- command: "ci/docker-run.sh rustlang/rust:nightly ci/test-nightly.sh || true"
name: "nightly - FAILURES IGNORED [public]"
- command: "ci/docker-run.sh rustlang/rust:nightly ci/test-nightly.sh"
name: "nightly [public]"
timeout_in_minutes: 20
- command: "ci/docker-run.sh rust ci/test-ignored.sh"
name: "ignored [public]"
Expand Down
4 changes: 1 addition & 3 deletions src/signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,7 @@ mod bench {

#[bench]
fn bench_gen_keys(b: &mut Bencher) {
let mut seed = [0u8; 32];
seed[0..3].copy_from_slice(&[1, 2, 3, 4]);
let rnd = GenKeys::new(seed);
let rnd = GenKeys::new([0u8; 32]);
b.iter(|| rnd.gen_n_keypairs(1000));
}
}

0 comments on commit 1c97bf5

Please sign in to comment.