File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
3232- AggregatorRegistry renamed to ClusterRegistry, old name deprecated
3333- chore: update faceoff to 1.1
3434- perf: Stat aggregation uses similar strategy to collection. 60% faster aggregation
35+ - ci: Run additional benchmarks against trunk
3536
3637### Added
3738
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ const debug = require('debug')('benchmark');
1313 */
1414
1515const benchmarks = new Benchmark ( {
16- 'prom-client@latest' : 'prom-client@latest' ,
17- 'prom-client@ trunk' : 'git@github.com:siimon/prom-client' ,
18- 'prom-client@ current' : { location : process . cwd ( ) } ,
16+ released : 'prom-client@latest' ,
17+ trunk : 'git@github.com:siimon/prom-client' ,
18+ current : { location : process . cwd ( ) } ,
1919} ) ;
2020
2121benchmarks . suite ( 'counter' , require ( './counter' ) ) ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const Path = require('path');
55module . exports = setupUtilSuite ;
66
77function setupUtilSuite ( suite ) {
8- const skip = [ 'prom-client@latest ' ] ;
8+ const skip = [ 'released ' ] ;
99
1010 suite . add (
1111 'hashObject' ,
@@ -57,10 +57,6 @@ function setupUtilSuite(suite) {
5757 suite . add (
5858 'LabelGrouper.keyFrom()' ,
5959 ( client , labelGrouper ) => {
60- if ( labelGrouper === undefined ) {
61- return ;
62- }
63-
6460 labelGrouper . keyFrom ( {
6561 foo : 'longish' ,
6662 user_agent : 'Chrome' ,
@@ -77,7 +73,7 @@ function setupUtilSuite(suite) {
7773
7874 return new Util . LabelGrouper ( ) ;
7975 } ,
80- skip : [ 'prom-client@latest ' , 'prom-client@ trunk' ] ,
76+ skip : [ 'released ' , 'trunk' ] ,
8177 } ,
8278 ) ;
8379}
You can’t perform that action at this time.
0 commit comments