<div dir="ltr"><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, Feb 2, 2019 at 7:32 AM David Chisnall via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 1 Feb 2019, at 22:48, Peter Wu via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>> wrote:<br>
> <br>
> On caveat is that the test coverage would be limited or else the build<br>
> times would be very long. There are quite some builders for various<br>
> projects (llvm, cfe, compiler-rt, etc.) on a lot of different platforms<br>
> and targets (Linux, macOS, Windows, Android, etc.).<br>
> <br>
> With limited resources, Arthur's suggestion seems workable to me:<br>
> - Enable pre-commit testing of few configurations (in parallel).<br>
> - Encourage developers to wait for tests to pass before pushing changes.<br>
> - Do not block hard to avoid a situation where unrelated changes<br>
>  (commits or build environment) cause failures.<br>
<br>
GitHub does let you block merges (by anyone who isn’t an administrator) of PRs that don’t meet certain requirements.  For one project, we have it set up so that you need to have at least one reviewer saying approved, you have to have signed the CLA, and you have to pass all of the CI checks.  It’s then easy to set up automatic merging when all of the prerequisites are met (you can get a notification and process it automatically). We allow self approval for small changes (not automatically enforced, this is a judgement call, but you can remove people who abuse it from the team quite easily and then they can’t approve changes).<br>
<br>
I’ve found it leads to a very nice workflow: developers aren’t in the loop for merges, they just prepare something that they think works, submit it, and get on with something else.  If you’re lucky, someone approves it and you pass CI first go, then everything is fine.  Reviewers can wait until CI is finished and not bother looking for things that are going to break.  If the change introduces new tests, reviewers know that those tests are passing.  If you broke a platform that you don’t test on locally, you get notified but no one else is spammed with breakage reports.  Once you’ve fixed it, you get a review, and make any changes.  The master branch is always buildable and passing CI.  If your changes break CI, you don’t have a race to fix things before someone reverts your change, you just fix things in the PR and wait for it to be automatically merged.<br></blockquote><div>Compared to the current model, the CI in your description operates on more branches. I imagine it uses more machine resources.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
David<br>
<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
</blockquote></div></div>