From b23e6d3fb5152a701e9226e2acd6fbbf0560a435 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C5=A1a=20=C5=BDivkov?= Date: Wed, 28 Jan 2015 10:38:01 +0100 Subject: [PATCH] dev-release: use the --no-cache option for the release build This should ensure proper version of the packaged core plugins. If the plugins were already built on an older tag i.e. 2.10-rc1 then these build results are cached. When building a 2.10 and if the plugins didn't change between the 2.10-rc1 and 2.10 the build results will be taken from the buck cache and the packaged plugin versions will still be 2.10-rc1. Change-Id: I4eebbef4f43abc59a3261b6977de4ca7589bb780 --- Documentation/dev-release.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Documentation/dev-release.txt b/Documentation/dev-release.txt index 6726f4a53a..b1605dba34 100644 --- a/Documentation/dev-release.txt +++ b/Documentation/dev-release.txt @@ -146,7 +146,8 @@ Commit the change and create the release tag on the new commit: * Build the Gerrit WAR and API JARs + ---- - buck build release + buck clean + buck build --no-cache release buck build api_install ----