Skip to content

Commit 1c97bf5

Browse files
committed
Fix nightly
No longer ignore failures in the nightly build.
1 parent 4ecd2c9 commit 1c97bf5

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

ci/buildkite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ steps:
66
- command: "ci/coverage.sh"
77
name: "coverage [public]"
88
timeout_in_minutes: 20
9-
- command: "ci/docker-run.sh rustlang/rust:nightly ci/test-nightly.sh || true"
10-
name: "nightly - FAILURES IGNORED [public]"
9+
- command: "ci/docker-run.sh rustlang/rust:nightly ci/test-nightly.sh"
10+
name: "nightly [public]"
1111
timeout_in_minutes: 20
1212
- command: "ci/docker-run.sh rust ci/test-ignored.sh"
1313
name: "ignored [public]"

src/signature.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,7 @@ mod bench {
131131

132132
#[bench]
133133
fn bench_gen_keys(b: &mut Bencher) {
134-
let mut seed = [0u8; 32];
135-
seed[0..3].copy_from_slice(&[1, 2, 3, 4]);
136-
let rnd = GenKeys::new(seed);
134+
let rnd = GenKeys::new([0u8; 32]);
137135
b.iter(|| rnd.gen_n_keypairs(1000));
138136
}
139137
}

0 commit comments

Comments
 (0)