diff options
| author | Juan Ramos <juan@lunarg.com> | 2023-10-05 12:57:25 -0600 |
|---|---|---|
| committer | Juan Ramos <114601453+juan-lunarg@users.noreply.github.com> | 2023-10-05 14:18:09 -0600 |
| commit | 0bd59f5c160a742d64b23df1244e41b43778c6b1 (patch) | |
| tree | 3b7eb2b72a564adaabe32f66bd11a803ec1aa080 /scripts/check_code_format.sh | |
| parent | f49a190541473611a88a6a621c66471025bf7569 (diff) | |
| download | usermoji-0bd59f5c160a742d64b23df1244e41b43778c6b1.tar.xz | |
Remove unused scripts
Diffstat (limited to 'scripts/check_code_format.sh')
| -rwxr-xr-x | scripts/check_code_format.sh | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/scripts/check_code_format.sh b/scripts/check_code_format.sh deleted file mode 100755 index dbd7b799..00000000 --- a/scripts/check_code_format.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/bash -# Copyright (c) 2017 Google Inc. - -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# Script to determine if source code in Pull Request is properly formatted. -# Exits with non 0 exit code if formatting is needed. -# -# This script assumes to be invoked at the project root directory. - -RED='\033[0;31m' -GREEN='\033[0;32m' -NC='\033[0m' # No Color - -clang-format --version - -FILES_TO_CHECK=$(git diff --name-only main | grep -v -E "^include/vulkan" | grep -E ".*\.(cpp|cc|c\+\+|cxx|c|h|hpp)$") - -if [ -z "${FILES_TO_CHECK}" ]; then - echo -e "${GREEN}No source code to check for formatting.${NC}" - exit 0 -fi - -FORMAT_DIFF=$(git diff -U0 main -- ${FILES_TO_CHECK} | python ./scripts/clang-format-diff.py -p1 -style=file) - -if [ -z "${FORMAT_DIFF}" ]; then - echo -e "${GREEN}All source code in PR properly formatted.${NC}" - exit 0 -else - echo -e "${RED}Found formatting errors!${NC}" - echo "${FORMAT_DIFF}" - echo "Be sure you are using the following version of clang-format:" - clang-format --version - exit 1 -fi |
