mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-14 09:11:27 +00:00
Support for the following block layer changes in the Linux kernel v6.5:
- 05bdb9965305 ("block: replace fmode_t with a block-specific type for
block open flags")
- 0718afd47f70 ("block: introduce holder ops")
- 2736e8eeb0cc ("block: use the holder as indication for exclusive opens")
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
name: Checkpatch upon push
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
checkpatch:
|
|
name: ${{matrix.commit.message}}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
commit: ${{github.event.commits}}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{matrix.commit.id}}
|
|
fetch-depth: 2
|
|
|
|
- name: Download checkpatch.pl
|
|
run: |
|
|
curl https://raw.githubusercontent.com/torvalds/linux/master/scripts/checkpatch.pl -o checkpatch.pl
|
|
curl https://raw.githubusercontent.com/torvalds/linux/master/scripts/spelling.txt -o spelling.txt
|
|
curl https://raw.githubusercontent.com/torvalds/linux/master/scripts/const_structs.checkpatch -o const_structs.checkpatch
|
|
chmod +x checkpatch.pl
|
|
|
|
- name: Run checkpatch.pl
|
|
run: |
|
|
ignore=(
|
|
MISSING_SIGN_OFF
|
|
EMAIL_SUBJECT
|
|
UNKNOWN_COMMIT_ID
|
|
NO_AUTHOR_SIGN_OFF
|
|
COMMIT_LOG_USE_LINK
|
|
BAD_REPORTED_BY_LINK
|
|
FILE_PATH_CHANGES
|
|
SPDX_LICENSE_TAG
|
|
LINUX_VERSION_CODE
|
|
CONSTANT_COMPARISON
|
|
NEW_TYPEDEFS
|
|
SPACING
|
|
)
|
|
ignore_str=${ignore[*]}
|
|
|
|
git format-patch -1 --stdout | ./checkpatch.pl --no-tree --show-types --ignore="${ignore_str// /,}" -
|