nix-scripts/extended-tests.py

15 lines
335 B
Python
Raw Normal View History

2019-02-18 23:53:48 +08:00
import json
import bz2
import sys
2019-02-17 20:26:46 +08:00
2019-02-18 23:53:48 +08:00
with open(sys.argv[1], "r") as f:
hydra_json = json.load(f)
drv = hydra_json["drvPath"]
assert drv.startswith("/nix/store/")
drv = drv[len("/nix/store/"):]
hydra_log = "/var/lib/hydra/build-logs/" + drv[:2] + "/" + drv[2:]
with bz2.BZ2File(hydra_log, "w") as f:
f.write(b"hack successful")