diff options
Diffstat (limited to 'krebs/3modules/ci.nix')
| -rw-r--r-- | krebs/3modules/ci.nix | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/krebs/3modules/ci.nix b/krebs/3modules/ci.nix index 542a9252f..6e4db6edd 100644 --- a/krebs/3modules/ci.nix +++ b/krebs/3modules/ci.nix @@ -116,8 +116,12 @@ in                      "dummy_secrets": "true",                    },                    command=[ -                    "nix-shell", "--run", -                    "test --user={} --system={} --target=$LOGNAME@${config.krebs.build.host.name}$HOME/{}".format(user, host, user) +                    "nix-shell", "--run", " ".join(["test", +                      "--user={}".format(user), +                      "--system={}".format(host), +                      "--force-populate", +                      "--target=$LOGNAME@${config.krebs.build.host.name}$HOME/{}".format(user), +                    ])                    ]                ) | 
