• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Copyright 2016 gRPC authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#     http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16set -ex
17
18cd $(dirname $0)/../..
19
20DIFF_COMMAND="git diff --name-only HEAD | grep -v ^third_party/"
21
22if [ "x$1" == 'x--pre-commit' ]; then
23  if eval $DIFF_COMMAND | grep '^build.yaml$'; then
24    ./tools/buildgen/generate_projects.sh
25  else
26    templates=$(eval $DIFF_COMMAND | grep '\.template$' || true)
27    if [ -n "$templates" ]; then
28      ./tools/buildgen/generate_projects.sh --templates $templates
29    fi
30  fi
31  CHANGED_FILES=$(eval $DIFF_COMMAND) ./tools/distrib/clang_format_code.sh
32  ./tools/distrib/check_copyright.py --fix --precommit
33  ./tools/distrib/check_trailing_newlines.sh
34else
35  ./tools/buildgen/generate_projects.sh
36  ./tools/distrib/clang_format_code.sh
37  ./tools/distrib/check_copyright.py --fix
38  ./tools/distrib/check_trailing_newlines.sh
39fi
40