Skip to content

Commit

Permalink
Merge 093b7ef into a0d32f3
Browse files Browse the repository at this point in the history
  • Loading branch information
commial committed Apr 26, 2023
2 parents a0d32f3 + 093b7ef commit 10fa58b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Benchmark PR

permissions:
contents: read
pull-requests: write

on:
pull_request:
branches: [ master ]
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/mla_release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: mla release

permissions:
contents: write

on:
push:
tags:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/mlar_release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: mlar release

permissions:
contents: write

on:
push:
tags:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/sanitize.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Ensure repository healthy state over time

permissions:
contents: read

on:
push:
branches: [ master ]
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Build & test

permissions:
contents: write

on:
push:
branches: [ master ]
Expand Down
3 changes: 2 additions & 1 deletion mla/benches/bench_archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ fn iter_decompress_multifiles_linear(iters: u64, size: u64, layers: Layers) -> D
/// The full extraction is a common pattern of use of the library. This
/// benchmark helps measuring the gain of using `linear_extract`.
pub fn reader_multiple_layers_multiple_block_size_multifiles_linear(c: &mut Criterion) {
let mut group = c.benchmark_group("reader_multiple_layers_multiple_block_size_multifiles_linear");
let mut group =
c.benchmark_group("reader_multiple_layers_multiple_block_size_multifiles_linear");
// Reduce the number of sample to avoid taking too much time
group.sample_size(SAMPLE_SIZE_SMALL);
for size in SIZE_LIST.iter() {
Expand Down

0 comments on commit 10fa58b

Please sign in to comment.