2019-11-28 17:27:27 +08:00
|
|
|
name: cpplint_modified_files
|
2019-11-27 21:17:48 +08:00
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
2019-11-28 17:27:27 +08:00
|
|
|
cpplint_modified_files:
|
2019-11-27 21:17:48 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2019-11-28 17:27:27 +08:00
|
|
|
- uses: actions/setup-python@v1
|
|
|
|
- run: python -m pip install cpplint
|
2019-11-27 21:17:48 +08:00
|
|
|
- run: git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
|
|
|
|
- run: git diff origin/master --name-only > git_diff.txt
|
2019-11-28 17:27:27 +08:00
|
|
|
- name: cpplint_modified_files
|
2019-11-27 21:17:48 +08:00
|
|
|
shell: python
|
|
|
|
run: |
|
|
|
|
import os
|
2019-11-28 17:27:27 +08:00
|
|
|
import subprocess
|
2019-11-27 21:17:48 +08:00
|
|
|
import sys
|
2019-11-28 17:27:27 +08:00
|
|
|
|
|
|
|
print("Python {}.{}.{}".format(*sys.version_info)) # legacy Python :-(
|
2019-11-27 21:17:48 +08:00
|
|
|
with open("git_diff.txt") as in_file:
|
2019-11-28 17:27:27 +08:00
|
|
|
modified_files = sorted(in_file.read().splitlines())
|
|
|
|
print("{} files were modified.".format(len(modified_files)))
|
|
|
|
|
|
|
|
cpp_exts = tuple(".c .c++ .cc .cpp .cu .cuh .cxx .h .h++ .hh .hpp .hxx".split())
|
|
|
|
cpp_files = [file for file in modified_files if file.lower().endswith(cpp_exts)]
|
|
|
|
print("{} C++ files were modified.".format(len(cpp_files)))
|
|
|
|
if not cpp_files:
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
print("cpplint:")
|
|
|
|
print(subprocess.check_output(["cpplint"] + cpp_files).decode("utf-8"))
|
2019-11-27 21:17:48 +08:00
|
|
|
|
2019-11-28 21:34:13 +08:00
|
|
|
upper_files = [file for file in cpp_files if file != file.lower()]
|
2019-11-27 21:17:48 +08:00
|
|
|
if upper_files:
|
|
|
|
print("{} files contain uppercase characters:".format(len(upper_files)))
|
|
|
|
print("\n".join(upper_files) + "\n")
|
|
|
|
|
2019-11-28 21:34:13 +08:00
|
|
|
space_files = [file for file in cpp_files if " " in file or "-" in file]
|
2019-11-27 21:17:48 +08:00
|
|
|
if space_files:
|
|
|
|
print("{} files contain space or dash characters:".format(len(space_files)))
|
|
|
|
print("\n".join(space_files) + "\n")
|
|
|
|
|
2019-11-28 21:34:13 +08:00
|
|
|
nodir_files = [file for file in cpp_files if file.count(os.sep) != 1]
|
2019-11-27 21:17:48 +08:00
|
|
|
if nodir_files:
|
2019-11-28 21:34:13 +08:00
|
|
|
print("{} files are not in one and only one directory:".format(len(nodir_files)))
|
2019-11-27 21:17:48 +08:00
|
|
|
print("\n".join(nodir_files) + "\n")
|
|
|
|
|
|
|
|
bad_files = len(upper_files + space_files + nodir_files)
|
|
|
|
if bad_files:
|
|
|
|
sys.exit(bad_files)
|