File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed 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:
47
47
48
48
@functools .cache
49
49
def get_runners () -> list [Runner ]:
50
- conf = config .get_bench_runner_config ().get ("runners" , [{}])[ 0 ]
50
+ conf = config .get_bench_runner_config ().get ("runners" , {})
51
51
runners = []
52
52
for nickname , section in conf .items ():
53
53
runners .append (
Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ notification_issue = 182
42
42
# --enable-optimizations and --with-lto=full.
43
43
# BUILD_DEST: (windows only) where to make build.bat install. This is
44
44
# required for the Windows build to succeed.
45
- [[runners ]]
46
45
47
46
[runners .linux ]
48
47
os = " linux"
You can’t perform that action at this time.
0 commit comments