add lint workflow

Related-To: NEO-6259
Closes: intel/compute-runtime#459
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
Artur Harasimiuk
2020-02-04 13:53:14 +01:00
committed by Compute-Runtime-Automation
parent 47eef95584
commit fcb6b0b7b7
4 changed files with 78 additions and 0 deletions

26
.github/actions/neo-lint/lint.sh vendored Executable file
View File

@ -0,0 +1,26 @@
#!/bin/bash
#
# Copyright (C) 2021 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
set -e
clang-format-11 --version
INPUT_PATH="${INPUT_PATH:-.}"
INPUT_IREGEX="${INPUT_IREGEX:-.*\.(cpp|h|inl)}"
(
cd ${INPUT_PATH}
git fetch origin ${GITHUB_BASE_REF}
set -x
git diff -U0 --no-color origin/master..HEAD | clang-format-diff-11 -p1 -i -v -iregex ${INPUT_IREGEX}
set +x
)
if [ -n "$(git -C ${INPUT_PATH} status --porcelain)" ]; then
git -C ${INPUT_PATH} diff
exit 1
fi