From 57ff467321d7cc4a3722e68fd5bf431ca59bcb39 Mon Sep 17 00:00:00 2001 From: Michael Griffith Date: Mon, 23 Feb 2026 15:10:18 -0500 Subject: [PATCH] asv runners have the same machine name now --- noxfile.py | 42 ++++++++++++++---------------------------- 1 file changed, 14 insertions(+), 28 deletions(-) diff --git a/noxfile.py b/noxfile.py index 124cd76e..5958c99e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -704,25 +704,18 @@ def benchmark(session: nox.Session): session.run( "asv", "machine", - "--machine", - "forgejo-runner", - "--os", - "Linux 6.x", - "--arch", - "x86_64", - "--num_cpu", - "32", - "--ram", - "64GB", - "--cpu", - "AMD", + "--machine=forgejo-runner", + "--os='Linux 6.x'", + "--arch=x86_64", + "--num_cpu=32", + "--ram=32GB", + "--cpu=AMD", f"--config={config_path}", ) session.run( "asv", "run", - "--machine", - "forgejo-runner", + "--machine=forgejo-runner", "--append-samples", "--show-stderr", "--verbose", @@ -741,25 +734,18 @@ def benchmark_regression(session: nox.Session): session.run( "asv", "machine", - "--machine", - "forgejo-runner", - "--os", - "Linux 6.x", - "--arch", - "x86_64", - "--num_cpu", - "32", - "--ram", - "64GB", - "--cpu", - "AMD", + "--machine=forgejo-runner", + "--os='Linux 6.x'", + "--arch=x86_64", + "--num_cpu=32", + "--ram=32GB", + "--cpu=AMD", f"--config={config_path}", ) session.run( "asv", "continuous", - "--machine", - "forgejo-runner", + "--machine=forgejo-runner", "--append-samples", "--show-stderr", "--verbose",