On Mon, Mar 04, 2019 at 01:20:25PM +0000, Guillaume Tucker wrote: > I'm not entirely sure how much flexibility Jenkins can offer in > that respect, but at least having 3 versions of the monitor job > that runs every hour, every day and every week should cover all > the cases. If possible, we may be able to implement something > that dynamically schedules the next check for each branch. One big concern I have with this is latency. One of the common cases where people don't need builds all the time is when they're mainly looking for checks before they submit pull requests. For those if you might have to wait almost a day before we even queue the build it might be a bit of an issue. If it was just a "skip this tree if we built it in the past X time" check that wouldn't be such an issue, it's just if the daily check runs at some fixed time each day or whatever that it might add huge extra latency. Another idea I just thought of but I'm not sure is practical would be to only check some trees if the Jenkins queue is less than some number of builds - that way if we're busy we won't add extra load, but it feels like it's more trouble than it's worth to implement fairly.