File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -73,16 +73,15 @@ specifying the runners to run on.
73
73
74
74
For example:
75
75
76
- ```` toml
77
- [[weekly ]]
78
-
76
+ ``` toml
79
77
[weekly .default ]
80
78
flags = []
81
79
runners = [" linux" , " darwin" , " windows" ]
82
80
83
81
[weekly .tailcall ]
84
82
flags = [" TAILCALL" ]
85
83
runners = [" linux_clang" , " darwin" , " windows_clang" ]
84
+ ```
86
85
87
86
## v1.8.0
88
87
Original file line number Diff line number Diff line change @@ -229,10 +229,9 @@ def generate__notify(dst: Any) -> Any:
229
229
def generate__weekly (dst : Any ) -> Any :
230
230
cfg = config .get_bench_runner_config ()
231
231
232
- weekly = cfg .get ("weekly" , {} )
232
+ weekly = cfg .get ("weekly" , None )
233
233
if not weekly :
234
- weekly = [{"default" : {"flags" : [], "runners" : cfg .get ("runners" , {}).keys ()}}]
235
- weekly = weekly [0 ]
234
+ weekly = {"default" : {"flags" : [], "runners" : cfg .get ("runners" , {}).keys ()}}
236
235
237
236
all_jobs = []
238
237
You can’t perform that action at this time.
0 commit comments