Merge pull request #23 from Mic92/fixes
set treeStableTimer; fix tmpfiles.rules for outputsPath
This commit is contained in:
commit
3bf9f399f9
|
@ -603,6 +603,7 @@ def config_for_project(
|
||||||
== c.properties.getProperty("github.repository.default_branch"),
|
== c.properties.getProperty("github.repository.default_branch"),
|
||||||
),
|
),
|
||||||
builderNames=[f"{project.name}/nix-eval"],
|
builderNames=[f"{project.name}/nix-eval"],
|
||||||
|
treeStableTimer=5,
|
||||||
),
|
),
|
||||||
# this is compatible with bors or github's merge queue
|
# this is compatible with bors or github's merge queue
|
||||||
schedulers.SingleBranchScheduler(
|
schedulers.SingleBranchScheduler(
|
||||||
|
|
|
@ -209,6 +209,6 @@ in
|
||||||
|
|
||||||
# Allow buildbot-master to write to this directory
|
# Allow buildbot-master to write to this directory
|
||||||
systemd.tmpfiles.rules = lib.optional (cfg.outputsPath != null)
|
systemd.tmpfiles.rules = lib.optional (cfg.outputsPath != null)
|
||||||
"d ${cfg.outputPath} 0755 buildbot buildbot - -";
|
"d ${cfg.outputsPath} 0755 buildbot buildbot - -";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue