summaryrefslogtreecommitdiffstats
path: root/tools/release.sh
blob: b8f31560604c7cc5e0d1990361f8a299ef93f761 (plain)
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
47
48
#!/bin/sh

flags=

while [ $# -gt 0 ]
do
	case "$1" in
	--no-documentation|--without-documentation)
		flags="$flags -Dgerrit.documentation.skip=true"
		shift
		;;
	--no-plugins|--without-plugins)
		flags="$flags -Dgerrit.plugins.skip=true"
		shift
		;;
	--no-tests|--without-tests)
		flags="$flags -Dgerrit.acceptance-tests.skip=true"
		flags="$flags -Dmaven.test.skip=true"
		shift
		;;
	*)
		echo >&2 "usage: $0 [--no-documentation] [--no-plugins] [--no-tests]"
		exit 1
	esac
done

git update-index -q --refresh

if test -n "$(git diff-index --name-only HEAD --)" \
|| test -n "$(git ls-files --others --exclude-standard)"
then
	echo >&2 "error: working directory is dirty, refusing to build"
	exit 1
fi

./tools/version.sh --release &&
mvn clean package verify $flags
rc=$?
./tools/version.sh --reset

if test 0 = $rc
then
	echo
	echo Built Gerrit Code Review `git describe`:
	ls gerrit-war/target/gerrit-*.war
	echo
fi
exit $rc