From 5c5e804c88c5a7d28fe4efeecded2e72d6fa353d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 11 Apr 2019 12:40:36 +0200 Subject: [PATCH] don't make e2e builds use modified ID MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski Signed-off-by: Igor Mandrigin --- ci/android.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/android.groovy b/ci/android.groovy index 078e6d31fa..824cd19c99 100644 --- a/ci/android.groovy +++ b/ci/android.groovy @@ -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') {