From 571514154d57ab87ef9a6c3ae84c31e3396e753a Mon Sep 17 00:00:00 2001 From: Igor Mandrigin Date: Wed, 27 Feb 2019 21:15:06 +0100 Subject: [PATCH] ci: don't rebase release branches on `develop` Signed-off-by: Igor Mandrigin --- ci/mobile.groovy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/mobile.groovy b/ci/mobile.groovy index 3b811128b7..ebcc04e846 100644 --- a/ci/mobile.groovy +++ b/ci/mobile.groovy @@ -3,7 +3,9 @@ ios = load 'ci/ios.groovy' android = load 'ci/android.groovy' def prep(type = 'nightly') { - cmn.doGitRebase() + if (type != 'release') { + cmn.doGitRebase() + } /* ensure that we start from a known state */ cmn.clean() /* Run at start to void mismatched numbers */