You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test_android_template → test_android_helloworld but disabled until template is removed (#44908)
Summary:
Pull Request resolved: #44908
Changelog: [General] [Changed] - CircleCI test to Helloworld, but disabled for now until we remove the template
Reviewed By: cipolleschi
Differential Revision: D58469912
fbshipit-source-id: 718a774946bd70347697f18bbfc470b2897d2f87
name: Build the template application for << parameters.flavor >> with Architecture set to << parameters.architecture >>, and using the << parameters.jsengine>> JS engine.
366
+
name: Build the Helloworld application for << parameters.flavor >> with Architecture set to << parameters.architecture >>, and using the << parameters.jsengine>> JS engine.
366
367
command: |
367
-
cd /tmp/$PROJECT_NAME/android/
368
-
if [[ << parameters.architecture >> == "NewArch" ]]; then
369
-
export ORG_GRADLE_PROJECT_newArchEnabled=true
370
-
else
371
-
export ORG_GRADLE_PROJECT_newArchEnabled=false
368
+
cd packages/helloworld/android
369
+
args=()
370
+
if [[ << parameters.architecture >> == "OldArch" ]]; then
371
+
args+=(--arch old)
372
372
fi
373
-
if [[ << parameters.jsengine >> == "Hermes" ]]; then
0 commit comments