1- import { PROJECT , ALT_PROJECT } from './utils/perfherder' ;
1+ import { ALT_PROJECT } from './utils/perfherder' ;
22import { queryInfoGen } from './config-utils' ;
33import { BENCHMARKS as AWSY_BENCHMARKS , DEFAULT_CATEGORIES as AWSY_CATEGORIES } from './awsy' ;
44import { BENCHMARKS as H3_BENCHMARKS , DEFAULT_SUITES as H3_SUITES } from './h3' ;
@@ -49,14 +49,12 @@ const DESKTOP_FIREFOX_APPS = {
4949 name : 'firefox' ,
5050 label : 'Firefox' ,
5151 color : PALETTE . orange ,
52- project : ALT_PROJECT ,
5352 extraOptions : [ 'webrender' ] ,
5453 } ,
5554 'firefox-fission' : {
5655 name : 'firefox' ,
5756 label : 'Firefox-Fission' ,
5857 color : PALETTE . red ,
59- project : PROJECT ,
6058 extraOptions : [ 'fission' , 'webrender' ] ,
6159 } ,
6260} ;
@@ -67,11 +65,13 @@ const DESKTOP_APPS = {
6765 name : 'chrome' ,
6866 label : 'Chrome' ,
6967 color : PALETTE . blue ,
68+ project : ALT_PROJECT ,
7069 } ,
7170 chromium : {
7271 name : 'chromium' ,
7372 label : 'Chromium' ,
7473 color : PALETTE . emerald ,
74+ project : ALT_PROJECT ,
7575 } ,
7676} ;
7777
@@ -81,22 +81,19 @@ const WASM_APPS = {
8181 name : 'firefox' ,
8282 label : 'Firefox (tiering)' ,
8383 color : PALETTE . orange ,
84- project : ALT_PROJECT ,
8584 extraOptions : [ 'webrender' ] ,
8685 } ,
8786 'baseline-firefox' : {
8887 name : 'firefox' ,
8988 label : 'Firefox (wasm-baseline)' ,
9089 color : PALETTE . violet ,
91- project : PROJECT ,
9290 suiteSuffix : 'baseline' ,
9391 extraOptions : [ 'webrender' ] ,
9492 } ,
9593 'optimizing-firefox' : {
9694 name : 'firefox' ,
9795 label : 'Firefox (wasm-optimizing)' ,
9896 color : PALETTE . pink ,
99- project : PROJECT ,
10097 suiteSuffix : 'optimizing' ,
10198 extraOptions : [ 'webrender' ] ,
10299 } ,
@@ -219,11 +216,11 @@ const JSBENCH_APPS = {
219216 sm : {
220217 label : 'SpiderMonkey' ,
221218 color : PALETTE . violet ,
222- project : ALT_PROJECT ,
223219 } ,
224220 v8 : {
225221 label : 'Chromium v8' ,
226222 color : PALETTE . pink ,
223+ project : ALT_PROJECT ,
227224 } ,
228225} ;
229226
@@ -340,7 +337,7 @@ Object.entries(SITES).forEach(([siteKey, siteLabel]) => {
340337 test : 'SpeedIndex' ,
341338 application : app . name ,
342339 platformSuffix : app . platformSuffix ,
343- project : live ? PROJECT : app . project ,
340+ project : live ? ALT_PROJECT : app . project ,
344341 option : 'opt' ,
345342 extraOptions : [ cacheVariant ] ,
346343 } ;
@@ -373,7 +370,6 @@ const MOBILE_APPS = {
373370 name : 'geckoview' ,
374371 label : 'GeckoView' ,
375372 color : PALETTE . indigo ,
376- project : ALT_PROJECT ,
377373 extraOptions : [ 'webrender' ] ,
378374 } ,
379375} ;
@@ -428,7 +424,7 @@ Object.entries(SITES).forEach(([siteKey, siteLabel]) => {
428424 BENCHMARKS [ bmKey ] . compare [ appKey ] . extraOptions . push ( 'live' ) ;
429425 if ( app . name === 'fenix' ) {
430426 // fenix live sites are running on mozilla-central
431- BENCHMARKS [ bmKey ] . compare [ appKey ] . project = PROJECT ;
427+ BENCHMARKS [ bmKey ] . compare [ appKey ] . project = ALT_PROJECT ;
432428 }
433429 }
434430 if ( Array . isArray ( app . extraOptions ) ) {
0 commit comments