Android-Password-Store/scripts/pre-push-hook.sh
Harsh Shandilya b01fddaa56 fix(scripts): set CI=true in pre-push hook
This enables -Werror
2024-03-17 11:48:18 +05:30

18 lines
490 B
Bash

#!/usr/bin/env bash
set -e
set -u
set -o pipefail
ZERO="0000000000000000000000000000000000000000"
GRADLE_EXEC="${GRADLE_EXEC:-./gradlew}"
while read -r local_ref local_oid remote_ref remote_oid; do
# These useless assignments are to silence warnings from shellcheck about unused variables
_=$local_ref
_=$remote_ref
_=$remote_oid
if [ "${local_oid}" != "${ZERO}" ]; then
CI=true "${GRADLE_EXEC}" metalavaCheckCompatibilityRelease lint ktfmtCheck test -PslimTests
fi
done