summaryrefslogtreecommitdiff
path: root/circle.yml
diff options
context:
space:
mode:
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/circle.yml b/circle.yml
index f3bf4dd1c2..89ff569244 100644
--- a/circle.yml
+++ b/circle.yml
@@ -660,7 +660,7 @@ jobs:
name: Build RenderTestRunner APK
command: |
cd render-test/android
- ./gradlew --parallel --max-workers=8 -Pmapbox.abis=arm64-v8a app:assembleDebug app:assembleDebugAndroidTest
+ ./gradlew --parallel --max-workers=8 -Pmapbox.abis=arm64-v8a app:assembleRelease app:assembleAndroidTest
- login-google-cloud-platform
- run:
name: Run RenderTestRunner Instrumentation Test on Firebase
@@ -669,8 +669,8 @@ jobs:
if [[ -n "${GCLOUD_SERVICE_ACCOUNT_JSON}" && -z "${SKIP_FIREBASE:-}" ]]; then
gcloud firebase test android models list
gcloud firebase test android run --type instrumentation \
- --app render-test/android/app/build/outputs/apk/debug/app-debug.apk \
- --test render-test/android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk \
+ --app render-test/android/app/build/outputs/apk/release/app-release.apk \
+ --test render-test/android/app/build/outputs/apk/androidTest/release/app-release-androidTest.apk \
--device-ids flame --os-version-ids 29 --locales en --orientations portrait --timeout 20m \
--directories-to-pull /sdcard --results-dir render-test-app-${CIRCLE_BUILD_NUM}
testResult=$(gsutil ls gs://test-lab-186672a0qp5bq-ycr70axads3nc/render-test-app-${CIRCLE_BUILD_NUM}/**/*.html | tail -1)