File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## Unreleased
2+
3+ ### bench_runner.toml change
4+
5+ The configuration no longer expects a top-level, single element ` runners ` array.
6+
7+ You should remove the following line from your ` bench_runners.toml ` :
8+
9+ ```
10+ [[runners]]
11+ ```
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def display_name(self) -> str:
4747
4848@functools .cache
4949def get_runners () -> list [Runner ]:
50- conf = config .get_bench_runner_config ().get ("runners" , [{}])[ 0 ]
50+ conf = config .get_bench_runner_config ().get ("runners" , {})
5151 runners = []
5252 for nickname , section in conf .items ():
5353 runners .append (
Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ notification_issue = 182
4242# --enable-optimizations and --with-lto=full.
4343# BUILD_DEST: (windows only) where to make build.bat install. This is
4444# required for the Windows build to succeed.
45- [[runners ]]
4645
4746[runners .linux ]
4847os = " linux"
You can’t perform that action at this time.
0 commit comments