diff --git a/inspector/tasks.py b/inspector/tasks.py index 9ef678e..5107e7f 100644 --- a/inspector/tasks.py +++ b/inspector/tasks.py @@ -1,7 +1,7 @@ import lib +import os import parse - class DmiDecode(lib.DockerTask): parallel: bool = True priority: int = 0 @@ -63,4 +63,5 @@ class Geekbench(lib.DockerTask): priority: int = 4 image: str = "ghcr.io/sparecores/benchmark:main" version_command: str = "bash -c \"geekbench6 --version | awk '{print $2}'\"" + docker_opts: dict = dict(environment={"BENCHMARK_SECRETS_PASSPHRASE": os.environ.get("BENCHMARK_SECRETS_PASSPHRASE")}) command: str = "geekbench.sh" \ No newline at end of file