2019-02-18 23:53:48 +08:00
|
|
|
import json
|
|
|
|
import sys
|
2019-02-19 00:24:08 +08:00
|
|
|
import subprocess
|
2019-02-17 20:26:46 +08:00
|
|
|
|
2019-02-19 00:24:08 +08:00
|
|
|
with open(sys.argv[1], "r") as hydra_json_file:
|
|
|
|
hydra_json = json.load(hydra_json_file)
|
2019-02-18 23:53:48 +08:00
|
|
|
|
|
|
|
drv = hydra_json["drvPath"]
|
|
|
|
assert drv.startswith("/nix/store/")
|
|
|
|
drv = drv[len("/nix/store/"):]
|
2019-02-19 00:24:08 +08:00
|
|
|
hydra_log = "/var/lib/hydra/build-logs/" + drv[:2] + "/" + drv[2:]
|
2019-02-18 23:53:48 +08:00
|
|
|
|
2019-02-19 00:24:08 +08:00
|
|
|
with open(hydra_log, "w") as log:
|
|
|
|
def run(*args):
|
|
|
|
subprocess.run(args, stdout=log, stderr=log).check_returncode()
|
|
|
|
run("artiq_flash", "-t", "kc705", "-V", "nist_clock")
|