fix toshiba/swanky evaluation (#167)

This commit is contained in:
Jörg Thalheim 2020-05-18 11:27:18 +01:00 committed by GitHub
parent 75a850cb3e
commit 4b129a0f71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -35,10 +35,10 @@ def build_profile(profile: str) -> Tuple[str, subprocess.CompletedProcess]:
cmd = [
"nix",
"build",
"-f", "build-profile.nix",
"-f",
"build-profile.nix",
"-I",
f"nixos-hardware={ROOT}",
"--dry-run",
"--show-trace",
"--system",
system,
@ -46,6 +46,11 @@ def build_profile(profile: str) -> Tuple[str, subprocess.CompletedProcess]:
"profile",
profile,
]
# uses import from derivation
if profile != "<nixos-hardware/toshiba/swanky>":
cmd += ["--dry-run"]
print("$ " + " ".join(cmd))
res = subprocess.run(
cmd, cwd=TEST_ROOT, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True,
)