Merge pull request #23 from Mic92/fixes

set treeStableTimer; fix tmpfiles.rules for outputsPath
This commit is contained in:
Jörg Thalheim 2023-11-04 12:20:34 +01:00 committed by GitHub
commit 3bf9f399f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -603,6 +603,7 @@ def config_for_project(
== c.properties.getProperty("github.repository.default_branch"),
),
builderNames=[f"{project.name}/nix-eval"],
treeStableTimer=5,
),
# this is compatible with bors or github's merge queue
schedulers.SingleBranchScheduler(

View file

@ -209,6 +209,6 @@ in
# Allow buildbot-master to write to this directory
systemd.tmpfiles.rules = lib.optional (cfg.outputsPath != null)
"d ${cfg.outputPath} 0755 buildbot buildbot - -";
"d ${cfg.outputsPath} 0755 buildbot buildbot - -";
};
}