From b2a6c9142b2acc9c7c6f58f233649b0fa53ada25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 6 Feb 2023 18:21:38 +0100 Subject: [PATCH] drop APK_NAME param for e2e jobs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's no longer necessary as PR ID by itself allows for copying of the `x86` APK from the correct Jenkins job artifacts directly. Related to: https://github.com/status-im/status-mobile/pull/14993 Signed-off-by: Jakub SokoĊ‚owski --- bot_scripts/trigger-automation-test-build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot_scripts/trigger-automation-test-build.js b/bot_scripts/trigger-automation-test-build.js index 0c4905d..46d30ea 100644 --- a/bot_scripts/trigger-automation-test-build.js +++ b/bot_scripts/trigger-automation-test-build.js @@ -215,7 +215,7 @@ async function processPullRequest (context, robot, prInfo, fullJobName) { } try { - const args = { parameters: { PR_ID: prInfo.number, APK_NAME: `${prInfo.number}.apk` } } + const args = { parameters: { PR_ID: prInfo.number } } if (process.env.DRY_RUN) { robot.log(`${botName} - Would start ${fullJobName} job in Jenkins`, prInfo, args)