forked from M-Labs/nix-scripts
actually use bz2 log compression properly
This commit is contained in:
parent
e160e83ca8
commit
e16c81e8da
|
@ -1,4 +1,5 @@
|
|||
import json
|
||||
import bz2
|
||||
import sys
|
||||
|
||||
with open(sys.argv[1], "r") as f:
|
||||
|
@ -7,7 +8,7 @@ with open(sys.argv[1], "r") as 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:]
|
||||
hydra_log = "/var/lib/hydra/build-logs/" + drv[:2] + "/" + drv[2:] + ".bz2"
|
||||
|
||||
with open(hydra_log, "w") as f:
|
||||
f.write("hack successful")
|
||||
with bz2.BZ2File(hydra_log, "w") as f:
|
||||
f.write(b"hack successful")
|
||||
|
|
Loading…
Reference in New Issue