Separated evaluators

This commit is contained in:
Luj 2023-01-28 20:25:59 +01:00
parent f5d2a190c1
commit 5c69217370
2 changed files with 15 additions and 7 deletions

View file

@ -290,6 +290,7 @@ def nix_update_flake_config(
def nix_eval_config(
worker_names: list[str],
repo: str,
github_token_secret: str,
) -> util.BuilderConfig:
"""
@ -336,10 +337,10 @@ def nix_eval_config(
)
return util.BuilderConfig(
name="nix-eval",
name=f"nix-eval-{repo}",
workernames=worker_names,
factory=factory,
properties=dict(virtual_builder_name="nix-eval"),
properties=dict(virtual_builder_name=f"nix-eval-{repo}"),
)