apk name updated in e2e nightly jenkins file

This commit is contained in:
Yevheniia Berdnyk 2023-12-22 14:57:30 +02:00
parent 10b97843ce
commit 1bd6898e1c
No known key found for this signature in database
GPG Key ID: 0642C73C66214825
1 changed files with 2 additions and 2 deletions

View File

@ -36,10 +36,10 @@ pipeline {
steps { script {
copyArtifacts(
projectName: "status-mobile/platforms/android-e2e",
filter: 'result/*-x86.apk',
filter: 'result/*-x86_64.apk',
selector: specific(env.APK_BUILD_NUMBER),
)
apk_path = "${env.WORKSPACE}/${utils.findFile('result/*-x86.apk')}"
apk_path = "${env.WORKSPACE}/${utils.findFile('result/*-x86_64.apk')}"
} }
}