mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-09 12:09:08 +00:00
e54afe9222
- added a test case to demonstrate the fail scenario
30 lines
879 B
Python
30 lines
879 B
Python
#!/usr/bin/env python
|
|
import subprocess
|
|
import os.path
|
|
import sys
|
|
|
|
|
|
if __name__ == '__main__':
|
|
script_dir = os.path.dirname(os.path.abspath(__file__))
|
|
root_dir = os.path.dirname(script_dir)
|
|
|
|
cmd = os.path.join(root_dir, "gomod2nix")
|
|
|
|
def run(directory):
|
|
print(f"Running {directory}")
|
|
|
|
subprocess.run([cmd, "--dir", directory, "--outdir", directory], check=True)
|
|
|
|
build_expr = ("""
|
|
with (import <nixpkgs> { overlays = [ (import %s/overlay.nix) ]; }); callPackage %s {}
|
|
""".replace("\n", " ") % (root_dir, directory))
|
|
subprocess.run(["nix-build", "--expr", build_expr], check=True)
|
|
|
|
for f in os.listdir(script_dir):
|
|
|
|
d = os.path.join(script_dir, f)
|
|
if os.path.isdir(d):
|
|
try:
|
|
run(d)
|
|
except Exception:
|
|
sys.stderr.write(f"Error running {d}\n")
|