@@ -50,66 +50,66 @@ parameters:
5050
5151 - displayName : Json ASP.NET
5252 arguments : --scenario json_aspnet --property scenario=JsonAspNet
53- condition : Math.round(Date.now() / 43200000) % 4 == 0 # once every 4 half-days
53+ condition : Math.round(Date.now() / 43200000) % 8 == 0 # once every 8 half-days
5454 - displayName : Fortunes ASP.NET
5555 arguments : --scenario fortunes_aspnet --property scenario=FortunesAspNet
56- condition : Math.round(Date.now() / 43200000) % 4 == 0 # once every 4 half-days
56+ condition : Math.round(Date.now() / 43200000) % 8 == 0 # once every 8 half-days
5757
5858 - displayName : Json ASP.NET Alpine
5959 arguments : --scenario json_aspnet_alpine --property scenario=JsonAspNetAlpine
60- condition : Math.round(Date.now() / 43200000) % 4 == 1 # once every 4 half-days
60+ condition : Math.round(Date.now() / 43200000) % 8 == 2 # once every 8 half-days
6161 - displayName : Fortunes ASP.NET Alpine
6262 arguments : --scenario fortunes_aspnet_alpine --property scenario=FortunesAspNetAlpine
63- condition : Math.round(Date.now() / 43200000) % 4 == 1 # once every 4 half-days
63+ condition : Math.round(Date.now() / 43200000) % 8 == 2 # once every 8 half-days
6464
6565 - displayName : Json ASP.NET Composite
6666 arguments : --scenario json_aspnet_composite --property scenario=JsonAspNetComposite
67- condition : Math.round(Date.now() / 43200000) % 4 == 2 # once every 3 half-days
67+ condition : Math.round(Date.now() / 43200000) % 8 == 4 # once every 8 half-days
6868 - displayName : Fortunes ASP.NET Composite
6969 arguments : --scenario fortunes_aspnet_composite --property scenario=FortunesAspNetComposite
70- condition : Math.round(Date.now() / 43200000) % 4 == 2 # once every 4 half-days
70+ condition : Math.round(Date.now() / 43200000) % 8 == 4 # once every 8 half-days
7171
7272 - displayName : Json ASP.NET 7.0
7373 arguments : --scenario json_aspnet_net7 --property scenario=JsonAspNet70
74- condition : Math.round(Date.now() / 43200000) % 4 == 3 # once every 4 half-days
74+ condition : Math.round(Date.now() / 43200000) % 8 == 6 # once every 8 half-days
7575 - displayName : Fortunes ASP.NET 7.0
7676 arguments : --scenario fortunes_aspnet_net7 --property scenario=FortunesAspNet70
77- condition : Math.round(Date.now() / 43200000) % 4 == 3 # once every 4 half-days
77+ condition : Math.round(Date.now() / 43200000) % 8 == 6 # once every 8 half-days
7878
7979 - displayName : Json Actix
8080 arguments : --scenario json_actix --property scenario=JsonActix
81- condition : Math.round(Date.now() / 43200000) % 5 == 0 # once every 5 half-days
81+ condition : Math.round(Date.now() / 43200000) % 10 == 0 # once every 10 half-days
8282 - displayName : Fortunes Actix
8383 arguments : --scenario fortunes_actix --property scenario=FortunesActix
84- condition : Math.round(Date.now() / 43200000) % 5 == 0 # once every 5 half-days
84+ condition : Math.round(Date.now() / 43200000) % 10 == 1 # once every 10 half-days
8585
8686 - displayName : Json NodeJS
8787 arguments : --scenario json_nodejs --property scenario=JsonNodeJs
88- condition : Math.round(Date.now() / 43200000) % 5 == 1 # once every 5 half-days
88+ condition : Math.round(Date.now() / 43200000) % 10 == 2 # once every 10 half-days
8989 - displayName : Fortunes NodeJS
9090 arguments : --scenario fortunes_nodejs --property scenario=FortunesNodeJs
91- condition : Math.round(Date.now() / 43200000) % 5 == 1 # once every 5 half-days
91+ condition : Math.round(Date.now() / 43200000) % 10 == 3 # once every 10 half-days
9292
9393 - displayName : Json FastHttp
9494 arguments : --scenario json_fasthttp --property scenario=JsonFastHttp
95- condition : Math.round(Date.now() / 43200000) % 5 == 2 # once every 5 half-days
95+ condition : Math.round(Date.now() / 43200000) % 10 == 4 # once every 10 half-days
9696 - displayName : Fortunes FastHttp
9797 arguments : --scenario fortunes_fasthttp --property scenario=FortunesFastHttp
98- condition : Math.round(Date.now() / 43200000) % 5 == 2 # once every 5 half-days
98+ condition : Math.round(Date.now() / 43200000) % 10 == 5 # once every 10 half-days
9999
100100 - displayName : Json Ulib
101101 arguments : --scenario json_ulib --property scenario=JsonUlib
102- condition : Math.round(Date.now() / 43200000) % 5 == 3 # once every 5 half-days
102+ condition : Math.round(Date.now() / 43200000) % 10 == 6 # once every 10 half-days
103103 - displayName : Fortunes Ulib
104104 arguments : --scenario fortunes_ulib --property scenario=FortunesUlib
105- condition : Math.round(Date.now() / 43200000) % 5 == 3 # once every 5 half-days
105+ condition : Math.round(Date.now() / 43200000) % 10 == 7 # once every 10 half-days
106106
107107 - displayName : Json Wizzardo
108108 arguments : --scenario json_wizzardo --property scenario=JsonWizzardo
109- condition : Math.round(Date.now() / 43200000) % 5 == 4 # once every 5 half-days
109+ condition : Math.round(Date.now() / 43200000) % 10 == 8 # once every 10 half-days
110110 - displayName : Fortunes Wizzardo
111111 arguments : --scenario fortunes_wizzardo --property scenario=FortunesWizzardo
112- condition : Math.round(Date.now() / 43200000) % 5 == 4 # once every 5 half-days
112+ condition : Math.round(Date.now() / 43200000) % 10 == 9 # once every 10 half-days
113113
114114steps :
115115- ${{ each scenario in parameters.scenarios }} :
0 commit comments