forked from HariSekhon/DevOps-Bash-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_gradle_build.sh
executable file
·46 lines (39 loc) · 1.12 KB
/
check_gradle_build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2016-07-25 00:17:36 +0100 (Mon, 25 Jul 2016)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
set -eu #o pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# shellcheck disable=SC1090
. "$srcdir/lib/utils.sh"
if [ -z "$(find "${1:-.}" -name build.gradle)" ]; then
return 0 &>/dev/null || :
exit 0
fi
section "G r a d l e"
start_time="$(start_timer)"
if command -v gradle &>/dev/null; then
find "${1:-.}" -name build.gradle |
grep -v '/build/' |
sort |
while read -r build_gradle; do
echo "Validating $build_gradle"
gradle -b "$build_gradle" -m clean build || exit $?
done
else
echo "Gradle not found in \$PATH, skipping gradle checks"
fi
time_taken "$start_time"
section2 "All Gradle builds passed dry run checks"
echo