Skip to content

Commit 79905a6

Browse files
author
github-action-benchmark
committed
add approval-voting-regression-bench (customSmallerIsBetter) benchmark result for 19307dd
1 parent 457d056 commit 79905a6

File tree

1 file changed

+100
-100
lines changed
  • bench/approval-voting-regression-bench

1 file changed

+100
-100
lines changed

bench/approval-voting-regression-bench/data.js

Lines changed: 100 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -1,107 +1,8 @@
11
window.BENCHMARK_DATA = {
2-
"lastUpdate": 1765197040340,
2+
"lastUpdate": 1765323839119,
33
"repoUrl": "https://github.com/paritytech/polkadot-sdk",
44
"entries": {
55
"approval-voting-regression-bench": [
6-
{
7-
"commit": {
8-
"author": {
9-
"email": "[email protected]",
10-
"name": "Ankan",
11-
"username": "Ank4n"
12-
},
13-
"committer": {
14-
"email": "[email protected]",
15-
"name": "GitHub",
16-
"username": "web-flow"
17-
},
18-
"distinct": true,
19-
"id": "b8ccdb45d7e1e8e5058c357f1f7054fd7b781a74",
20-
"message": "[Staking] Cleanups and some improvements (#8701)\n\n## Changes\n- Introduced a new `min_bond` value, which is the minimum of\n`MinValidatorBond` and `MinNominatorBond`, with a fallback to\n`ExistentialDeposit`. Since ED on AH is much lower than on RC, this\nensures we enforce some min bonds for staking to cover storage costs for\nstaking ledger and related data.\n- Added an upper bound on era duration, protecting against anomalous\nconditions that could otherwise lead to excessive inflation.\n- Some refactors to gracefully handle unexpected validator activation in\nRC.\n\n\n## TODO\n- [ ] Set `MaxEraDuration` in WAH.\n- [ ] Port [full\nunbond](https://github.com/paritytech/polkadot-sdk/pull/3811) (will do\nin a separate PR)\n\n---------\n\nCo-authored-by: cmd[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
21-
"timestamp": "2025-06-10T07:59:43Z",
22-
"tree_id": "fff45c98ce2b7470fa229f3eddc74809a28e751b",
23-
"url": "https://github.com/paritytech/polkadot-sdk/commit/b8ccdb45d7e1e8e5058c357f1f7054fd7b781a74"
24-
},
25-
"date": 1749545944110,
26-
"tool": "customSmallerIsBetter",
27-
"benches": [
28-
{
29-
"name": "Sent to peers",
30-
"value": 63639.43000000001,
31-
"unit": "KiB"
32-
},
33-
{
34-
"name": "Received from peers",
35-
"value": 52947.40000000001,
36-
"unit": "KiB"
37-
},
38-
{
39-
"name": "approval-distribution",
40-
"value": 0.0000195469,
41-
"unit": "seconds"
42-
},
43-
{
44-
"name": "approval-voting",
45-
"value": 0.00001861782,
46-
"unit": "seconds"
47-
},
48-
{
49-
"name": "approval-voting-parallel",
50-
"value": 11.926799467219995,
51-
"unit": "seconds"
52-
},
53-
{
54-
"name": "approval-voting-parallel/approval-voting-parallel-1",
55-
"value": 2.3682790643300007,
56-
"unit": "seconds"
57-
},
58-
{
59-
"name": "approval-voting-parallel/approval-voting-parallel-3",
60-
"value": 2.378939312950002,
61-
"unit": "seconds"
62-
},
63-
{
64-
"name": "approval-voting-parallel/approval-voting-parallel-db",
65-
"value": 1.916691050579996,
66-
"unit": "seconds"
67-
},
68-
{
69-
"name": "approval-voting-parallel/approval-voting-parallel-subsystem",
70-
"value": 0.46985267918999296,
71-
"unit": "seconds"
72-
},
73-
{
74-
"name": "approval-voting-parallel/approval-voting-gather-signatures",
75-
"value": 0.005767116440000001,
76-
"unit": "seconds"
77-
},
78-
{
79-
"name": "approval-distribution/test-environment",
80-
"value": 0.0000195469,
81-
"unit": "seconds"
82-
},
83-
{
84-
"name": "test-environment",
85-
"value": 3.3107924423126027,
86-
"unit": "seconds"
87-
},
88-
{
89-
"name": "approval-voting-parallel/approval-voting-parallel-2",
90-
"value": 2.399181178770004,
91-
"unit": "seconds"
92-
},
93-
{
94-
"name": "approval-voting/test-environment",
95-
"value": 0.00001861782,
96-
"unit": "seconds"
97-
},
98-
{
99-
"name": "approval-voting-parallel/approval-voting-parallel-0",
100-
"value": 2.3880890649600004,
101-
"unit": "seconds"
102-
}
103-
]
104-
},
1056
{
1067
"commit": {
1078
"author": {
@@ -49502,6 +49403,105 @@ window.BENCHMARK_DATA = {
4950249403
"unit": "seconds"
4950349404
}
4950449405
]
49406+
},
49407+
{
49408+
"commit": {
49409+
"author": {
49410+
"email": "[email protected]",
49411+
"name": "Bastian Köcher",
49412+
"username": "bkchr"
49413+
},
49414+
"committer": {
49415+
"email": "[email protected]",
49416+
"name": "GitHub",
49417+
"username": "web-flow"
49418+
},
49419+
"distinct": true,
49420+
"id": "19307dd5f8a5853266a4841c457d312933f96436",
49421+
"message": "Fix runtime migrations check (#10570)\n\n- On the scheduled run only download the snapshot and not try to run the\nmigration checks\n- The job should fail when one of the migration checks was cancelled\n(because of timeout for example)\n- Increase the timeout to 120 min, because sometimes it is slower to\ndownload the snapshot\n\nShould be merged after:\nhttps://github.com/paritytech/polkadot-sdk/pull/10566\n\n---------\n\nCo-authored-by: Evgeny Snitko <[email protected]>",
49422+
"timestamp": "2025-12-09T21:49:38Z",
49423+
"tree_id": "12661e52e738b8ccf552b780eb960b562f7f6ee1",
49424+
"url": "https://github.com/paritytech/polkadot-sdk/commit/19307dd5f8a5853266a4841c457d312933f96436"
49425+
},
49426+
"date": 1765323815458,
49427+
"tool": "customSmallerIsBetter",
49428+
"benches": [
49429+
{
49430+
"name": "Received from peers",
49431+
"value": 52941.40000000001,
49432+
"unit": "KiB"
49433+
},
49434+
{
49435+
"name": "Sent to peers",
49436+
"value": 63636.81,
49437+
"unit": "KiB"
49438+
},
49439+
{
49440+
"name": "approval-voting-parallel",
49441+
"value": 12.043425833740015,
49442+
"unit": "seconds"
49443+
},
49444+
{
49445+
"name": "approval-voting/test-environment",
49446+
"value": 0.00001975271,
49447+
"unit": "seconds"
49448+
},
49449+
{
49450+
"name": "approval-voting-parallel/approval-voting-parallel-3",
49451+
"value": 2.3884290681500024,
49452+
"unit": "seconds"
49453+
},
49454+
{
49455+
"name": "approval-voting-parallel/approval-voting-parallel-2",
49456+
"value": 2.434506189100001,
49457+
"unit": "seconds"
49458+
},
49459+
{
49460+
"name": "approval-distribution",
49461+
"value": 0.000019793080000000004,
49462+
"unit": "seconds"
49463+
},
49464+
{
49465+
"name": "approval-voting",
49466+
"value": 0.00001975271,
49467+
"unit": "seconds"
49468+
},
49469+
{
49470+
"name": "approval-voting-parallel/approval-voting-parallel-subsystem",
49471+
"value": 0.42956585557000093,
49472+
"unit": "seconds"
49473+
},
49474+
{
49475+
"name": "approval-distribution/test-environment",
49476+
"value": 0.000019793080000000004,
49477+
"unit": "seconds"
49478+
},
49479+
{
49480+
"name": "test-environment",
49481+
"value": 2.6500606768608597,
49482+
"unit": "seconds"
49483+
},
49484+
{
49485+
"name": "approval-voting-parallel/approval-voting-gather-signatures",
49486+
"value": 0.005800651780000003,
49487+
"unit": "seconds"
49488+
},
49489+
{
49490+
"name": "approval-voting-parallel/approval-voting-parallel-0",
49491+
"value": 2.421189133809997,
49492+
"unit": "seconds"
49493+
},
49494+
{
49495+
"name": "approval-voting-parallel/approval-voting-parallel-1",
49496+
"value": 2.39743678087,
49497+
"unit": "seconds"
49498+
},
49499+
{
49500+
"name": "approval-voting-parallel/approval-voting-parallel-db",
49501+
"value": 1.966498154460012,
49502+
"unit": "seconds"
49503+
}
49504+
]
4950549505
}
4950649506
]
4950749507
}

0 commit comments

Comments
 (0)