Re: [PATCH v1 4/6] gitlab: skip checkpatch.pl checks if no commit delta on branch

2020-10-22 Thread Philippe Mathieu-Daudé
On 10/21/20 6:31 PM, Alex Bennée wrote: From: Daniel P. Berrangé If the current branch is synced to the current upstream git master, there are no commits that need checking. This causes checkpatch.pl to print an error that it found no commits. We need to avoid calling checkpatch.pl in this case

Re: [PATCH v1 4/6] gitlab: skip checkpatch.pl checks if no commit delta on branch

2020-10-21 Thread Thomas Huth
On 21/10/2020 18.31, Alex Bennée wrote: > From: Daniel P. Berrangé > > If the current branch is synced to the current upstream git master, > there are no commits that need checking. This causes checkpatch.pl > to print an error that it found no commits. We need to avoid calling > checkpatch.pl in

[PATCH v1 4/6] gitlab: skip checkpatch.pl checks if no commit delta on branch

2020-10-21 Thread Alex Bennée
From: Daniel P. Berrangé If the current branch is synced to the current upstream git master, there are no commits that need checking. This causes checkpatch.pl to print an error that it found no commits. We need to avoid calling checkpatch.pl in this case. Signed-off-by: Daniel P. Berrangé Mess