Skip to content

Commit 650af6a

Browse files
committed
refactor(ci): lower upper bound
1 parent f2df3fa commit 650af6a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
run: |
3333
# Run benchmarks with multiple sizes and save to JSON
3434
./target/release/bench_throughput \
35-
--sizes 1000,10000,100000 \
36-
--iterations 50 \
35+
--sizes 1000,5000,10000 \
36+
--iterations 100 \
3737
--format json \
3838
--output benchmark_results.json
3939

.github/workflows/update-baseline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
iterations:
1212
description: 'Number of benchmark iterations'
1313
required: false
14-
default: '50'
14+
default: '100'
1515
type: string
1616

1717
jobs:
@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
echo "Running benchmarks for commit ${{ steps.commit-info.outputs.short_sha }}"
5050
./target/release/bench_throughput \
51-
--sizes 1000,10000,100000 \
51+
--sizes 1000,5000,10000 \
5252
--iterations ${{ inputs.iterations }} \
5353
--format json \
5454
--output benchmark_results.json

0 commit comments

Comments
 (0)