Skip to content

Commit

Permalink
[LOCAL] Fix testing script to use debug versions of the Android APK
Browse files Browse the repository at this point in the history
  • Loading branch information
cipolleschi committed Sep 10, 2024
1 parent b395208 commit 026fd32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/release-testing/test-e2e-local.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ async function testRNTesterAndroid(
exec(`unzip ${downloadPath} -d ${unzipFolder}`);
let apkPath = path.join(
unzipFolder,
`app-${argv.hermes === true ? 'hermes' : 'jsc'}-${emulatorArch}-release.apk`,
`app-${argv.hermes === true ? 'hermes' : 'jsc'}-${emulatorArch}-debug.apk`,
);

exec(`adb install ${apkPath}`);
Expand Down
4 changes: 2 additions & 2 deletions scripts/release-testing/utils/github-actions-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,13 +161,13 @@ function downloadArtifact(
async function artifactURLForJSCRNTesterAPK(
emulatorArch /*: string */,
) /*: Promise<string> */ {
return getArtifactURL('rntester-jsc-release');
return getArtifactURL('rntester-jsc-debug');
}

async function artifactURLForHermesRNTesterAPK(
emulatorArch /*: string */,
) /*: Promise<string> */ {
return getArtifactURL('rntester-hermes-release');
return getArtifactURL('rntester-hermes-debug');
}

async function artifactURLForMavenLocal() /*: Promise<string> */ {
Expand Down

0 comments on commit 026fd32

Please sign in to comment.