blob: bd918dd9aed621b15cb2e8e4403dd9b75c31bf86 [file] [log] [blame]
#!/bin/bash -xe
if git show --diff-filter=AM --name-only --pretty="" HEAD | grep -q .bazelversion
then
export BAZEL_OPTS=""
fi
. set-java.sh --branch "$TARGET_BRANCH"
cd gerrit
bazelisk version
if ((git show --diff-filter=AM --name-only --pretty="" HEAD | grep -q polygerrit-ui) || \
(git show --summary HEAD | grep -q ^Merge:) || \
(git show --diff-filter=AM --name-only --pretty="" HEAD | grep -q .bazelversion))
then
echo 'Running PolyGerrit lint check...'
java -fullversion
bazelisk test //polygerrit-ui/app:lint_test
if [[ "$TARGET_BRANCH" == "master" ]]
then
bazelisk test //polygerrit-ui/app:lit_analysis
fi
fi