2019-01-30 18:13:23 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-04-19 19:11:43 +00:00
|
|
|
# We recommend you run this as a pre-push hook: to reduce
|
|
|
|
# review turn-around time, we want all pushes to run tasks
|
|
|
|
# locally. Using this hook will guarantee your hook gets
|
|
|
|
# updated as the repository changes.
|
|
|
|
#
|
|
|
|
# This hook tries to run as much as possible without taking
|
|
|
|
# too long.
|
|
|
|
#
|
|
|
|
# You can use it by running this command from the project root:
|
2020-07-01 20:23:11 +00:00
|
|
|
# `ln -s ../../config/pre-push-recommended.sh .git/hooks/pre-push`
|
2019-04-19 19:11:43 +00:00
|
|
|
|
2021-07-21 19:01:05 +00:00
|
|
|
set -e
|
2019-04-19 19:11:43 +00:00
|
|
|
|
2021-07-21 19:01:05 +00:00
|
|
|
# Run linter in tools/ if it's installed.
|
|
|
|
if `which pycodestyle > /dev/null`; then
|
|
|
|
pycodestyle tools
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Run core checks. Descriptions for each gradle task
|
|
|
|
# below can be found in the output of `./gradlew tasks`.
|
|
|
|
#
|
|
|
|
# Tasks omitted because they take a long time to run:
|
|
|
|
# - assembling all variants
|
|
|
|
# - unit test on all variants
|
|
|
|
# - UI tests
|
|
|
|
# - android lint (takes a long time to run)
|
2019-01-30 18:13:23 +00:00
|
|
|
./gradlew -q \
|
|
|
|
ktlint \
|
|
|
|
detekt \
|
2020-08-06 20:08:09 +00:00
|
|
|
assembleDebug \
|
|
|
|
assembleDebugAndroidTest \
|
2020-10-21 17:40:04 +00:00
|
|
|
mozilla-detekt-rules:test \
|
|
|
|
mozilla-lint-rules:test \
|
2020-08-06 20:08:09 +00:00
|
|
|
testDebug
|