diff options
author | makefu <github@syntax-fehler.de> | 2018-09-13 22:44:42 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-09-13 22:44:42 +0200 |
commit | 6c5d362662713894091f2d97fdd9fa7aff03f70c (patch) | |
tree | 4b675e991f6607ba74546c1b758ec074160862ba /krebs | |
parent | 9cdcf9b7ebb36f78f20263ec02089bfd427d7e81 (diff) | |
parent | 244d31c7611e26e9cac91af2e945910b38acee96 (diff) |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/3modules/ci.nix | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/krebs/3modules/ci.nix b/krebs/3modules/ci.nix index 33afb2c0a..fdc8b9dc4 100644 --- a/krebs/3modules/ci.nix +++ b/krebs/3modules/ci.nix @@ -26,8 +26,8 @@ let hostname = config.networking.hostName; getJobs = pkgs.writeDash "get_jobs" '' - nix-build --no-out-link ./ci.nix 2>&1 > /dev/null - nix-instantiate --eval --strict --json ./ci.nix + nix-build --no-out-link --quiet -Q ./ci.nix > /dev/null + nix-instantiate --quiet -Q --eval --strict --json ./ci.nix ''; imp = { @@ -53,9 +53,12 @@ let nameValuePair name '' sched.append( schedulers.SingleBranchScheduler( - change_filter=util.ChangeFilter(branch_re=".*"), + change_filter=util.ChangeFilter( + branch_re=".*", + project='${name}', + ), treeStableTimer=60, - name="build-all-branches", + name="${name}-all-branches", builderNames=[ "${name}", ] |