| #!/bin/bash |
| # Copyright lowRISC contributors. |
| # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| # A wrapper around //quality:license_check, used for CI. |
| # |
| # Expects a single argument, which is the pull request's target branch |
| # (usually "master"). |
| |
| set -e |
| |
| if [ $# != 1 ]; then |
| echo >&2 "Usage: check-licence-headers.sh <tgt-branch>" |
| exit 1 |
| fi |
| tgt_branch="$1" |
| |
| merge_base="$(git merge-base origin/$tgt_branch HEAD)" || { |
| echo >&2 "Failed to find fork point for origin/$tgt_branch." |
| exit 1 |
| } |
| echo "Checking licence headers on files changed since $merge_base" |
| |
| # Ask git for a list of null-separated names of changed files and pipe |
| # those through to the licence checker using xargs. Setting pipefail |
| # ensures that we'll see an error if the git diff command fails for |
| # some reason. |
| set -o pipefail |
| (for F in $(git diff --name-only --diff-filter=ACMRTUXB "$merge_base"); do |
| echo "--test_arg=\"$F\"" |
| done)| \ |
| xargs -r ./bazelisk.sh test //quality:license_check --test_output=streamed || { |
| |
| echo >&2 -n "##vso[task.logissue type=error]" |
| echo >&2 "Licence header check failed." |
| exit 1 |
| } |