drop APK_NAME param for e2e jobs
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 <jakub@status.im>
This commit is contained in:
parent
c4d66646fb
commit
b2a6c9142b
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue