don't make e2e builds use modified ID

Signed-off-by: Jakub Sokołowski <jakub@status.im>
Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
This commit is contained in:
Jakub Sokołowski 2019-04-11 12:40:36 +02:00 committed by Igor Mandrigin
parent 64b63d5593
commit 5c5e804c88
No known key found for this signature in database
GPG Key ID: 4A0EDDE26E66BC8B
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ def bundle() {
def gradleOpt = "-PbuildUrl='${currentBuild.absoluteUrl}' -Dorg.gradle.daemon=false "
def target = "release"
if (btype in ['pr', 'e2e']) {
if (params.BUILD_TYPE == 'pr') {
/* PR builds shouldn't replace normal releases */
target = 'pr'
} else if (btype == 'release') {