Geoffrey Martin-Noble | 11c0733 | 2021-05-04 20:30:33 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Geoffrey Martin-Noble | 552d3f8 | 2021-05-25 17:56:09 -0700 | [diff] [blame] | 3 | # Copyright 2021 The IREE Authors |
Geoffrey Martin-Noble | 11c0733 | 2021-05-04 20:30:33 -0700 | [diff] [blame] | 4 | # |
Geoffrey Martin-Noble | 552d3f8 | 2021-05-25 17:56:09 -0700 | [diff] [blame] | 5 | # Licensed under the Apache License v2.0 with LLVM Exceptions. |
| 6 | # See https://llvm.org/LICENSE.txt for license information. |
| 7 | # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Geoffrey Martin-Noble | 11c0733 | 2021-05-04 20:30:33 -0700 | [diff] [blame] | 8 | |
| 9 | # Checks buildifier formatting and lint in files modified vs the specified |
| 10 | # reference commit (default "main") |
| 11 | # See https://github.com/bazelbuild/buildtools/tree/master/buildifier |
| 12 | |
| 13 | set -o pipefail |
| 14 | |
| 15 | BASE_REF="${1:-main}" |
| 16 | |
| 17 | declare -a included_files_patterns=( |
| 18 | "/BUILD$" |
| 19 | "\.bazel$" |
| 20 | "/WORKSPACE$" |
| 21 | "\.bzl$" |
| 22 | ) |
| 23 | |
| 24 | declare -a excluded_files_patterns=( |
| 25 | "/third_party/" |
| 26 | "^third_party/" |
| 27 | ) |
| 28 | |
| 29 | # Join on | |
| 30 | included_files_pattern="$(IFS="|" ; echo "${included_files_patterns[*]?}")" |
| 31 | excluded_files_pattern="$(IFS="|" ; echo "${excluded_files_patterns[*]?}")" |
| 32 | |
| 33 | readarray -t files < <(\ |
| 34 | (git diff --name-only --diff-filter=d "${BASE_REF}" || kill $$) \ |
| 35 | | grep -E "${included_files_pattern?}" \ |
| 36 | | grep -v -E "${excluded_files_pattern?}") |
| 37 | |
| 38 | if [ ${#files[@]} -eq 0 ]; then |
| 39 | echo "No Bazel files changed" |
| 40 | exit 0 |
| 41 | fi |
| 42 | |
| 43 | echo "Fixing formatting with Buildifier" |
| 44 | buildifier "${files[@]}" |
| 45 | |
| 46 | echo "Fixing automatically fixable lint with Buildifier" |
| 47 | buildifier -lint=fix "${files[@]}" |
| 48 | |
| 49 | echo "Checking complicated lint with Buildifier" |
| 50 | # Sometimes people don't write docstrings and I am not going to make that |
| 51 | # blocking. |
| 52 | buildifier -lint=warn -warnings=-module-docstring,-function-docstring "${files[@]}" |