diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-03-11 14:09:29 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-03-11 14:26:29 +0100 |
commit | 2a1bd0b0c8b774d70bd2154a50db97fc8875accd (patch) | |
tree | 6dc32a325ff230d6a01176883ae6a07a0316e5d6 | |
parent | c516c643de27cc5fb7d30495f5c9047651a64447 (diff) | |
download | libfuse-2a1bd0b0c8b774d70bd2154a50db97fc8875accd.tar.gz |
checkpatch: More ignores: ENOSYS,FROM_SIGN_OFF_MISMATCH,QUOTED_COMMIT_ID
ENOSYS is right for fuse, automatic github action updates
persistently run into sign-off-mismatch and commit-id
quoting persistently conflicts with long line warnings.
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
-rw-r--r-- | .github/workflows/checkpatch.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/checkpatch.yml b/.github/workflows/checkpatch.yml index f6acb1b..5bf9262 100644 --- a/.github/workflows/checkpatch.yml +++ b/.github/workflows/checkpatch.yml @@ -30,7 +30,7 @@ jobs: git rev-list --reverse $base_commit..HEAD | while read commit; do subject=$(git log -1 --format=%s $commit) echo "Checking commit: $commit - $subject" - if ! ./checkpatch.pl --no-tree --ignore MAINTAINERS,SPDX_LICENSE_TAG,COMMIT_MESSAGE,FILE_PATH_CHANGES,EMAIL_SUBJECT,AVOID_EXTERNS,GIT_COMMIT_ID,ENOSYS_SYSCALL -g $commit; then + if ! ./checkpatch.pl --no-tree --ignore MAINTAINERS,SPDX_LICENSE_TAG,COMMIT_MESSAGE,FILE_PATH_CHANGES,EMAIL_SUBJECT,AVOID_EXTERNS,GIT_COMMIT_ID,ENOSYS_SYSCALL,ENOSYS,FROM_SIGN_OFF_MISMATCH,QUOTED_COMMIT_ID -g $commit; then echo "checkpatch.pl found issues in commit $commit - $subject" exit 1 fi |