diff options
author | makefu <github@syntax-fehler.de> | 2017-07-28 22:00:25 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-07-28 22:00:25 +0200 |
commit | dfd1b5f6bc278be615975dc619e1f9490e05ef7a (patch) | |
tree | 2991cddc8933d494a8b13124bf59540fe0124c9c /krebs/3modules/ci.nix | |
parent | 6919ec53cc640e0b813989012eecc58665887e19 (diff) | |
parent | 32d8c202b0ec037dcf78ebf6ecad730cfb9c5272 (diff) |
Merge remote-tracking branch 'lass/master'
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), + ]) ] ) |