mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
incorporate updates from common (#255)
* incorporate updates from common * empty commit to rerun check
This commit is contained in:
parent
6b4a3d0a6e
commit
0345a20202
6
.github/scripts/kernel_checker.py
vendored
6
.github/scripts/kernel_checker.py
vendored
|
@ -83,7 +83,11 @@ def main():
|
||||||
checker.ignoreFile(*KERNEL_IGNORED_FILES)
|
checker.ignoreFile(*KERNEL_IGNORED_FILES)
|
||||||
checker.ignoreFile(os.path.split(__file__)[-1])
|
checker.ignoreFile(os.path.split(__file__)[-1])
|
||||||
|
|
||||||
return checker.processArgs(args)
|
rc = checker.processArgs(args)
|
||||||
|
if rc:
|
||||||
|
checker.showHelp(__file__)
|
||||||
|
|
||||||
|
return rc
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
exit(main())
|
exit(main())
|
||||||
|
|
2
.github/workflows/kernel-checks.yml
vendored
2
.github/workflows/kernel-checks.yml
vendored
|
@ -41,7 +41,7 @@ jobs:
|
||||||
- name: Check File Headers
|
- name: Check File Headers
|
||||||
run: |
|
run: |
|
||||||
mv tools/.github/scripts/common inspect/.github/scripts
|
mv tools/.github/scripts/common inspect/.github/scripts
|
||||||
|
pip install -r inspect/.github/scripts/common/requirements.txt
|
||||||
cd inspect
|
cd inspect
|
||||||
.github/scripts/kernel_checker.py --json ${HOME}/files_modified.json ${HOME}/files_added.json ${HOME}/files_renamed.json
|
.github/scripts/kernel_checker.py --json ${HOME}/files_modified.json ${HOME}/files_added.json ${HOME}/files_renamed.json
|
||||||
exit $?
|
exit $?
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue