don't rebase on canary-branch

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-05-08 16:52:06 +02:00
parent eaf3e8d7bd
commit 3469c4a9b1
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 4 additions and 0 deletions

View File

@ -69,6 +69,10 @@ def pkgFilename(type, ext) {
def doGitRebase() {
/* rebasing on relases defeats the point of having a release branch */
if (branchName() == 'canary-branch') {
println 'Skipping rebase for canary build...'
return
}
if (params.BUILD_TYPE == 'release') {
println 'Skipping rebase due to release build...'
return