Skip to content

Commit 713b6b9

Browse files
committed
[LOCAL][RN][CI] Fix Hermes for iOS in CI
1 parent c0dd236 commit 713b6b9

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.circleci/configurations/jobs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -786,6 +786,9 @@ jobs:
786786
- HERMES_WS_DIR: *hermes_workspace_root
787787
- HERMES_TARBALL_ARTIFACTS_DIR: *hermes_tarball_artifacts_dir
788788
- HERMES_OSXBIN_ARTIFACTS_DIR: *hermes_osxbin_artifacts_dir
789+
- XROS_DEPLOYMENT_TARGET: "1.0"
790+
- MACOSX_DEPLOYMENT_TARGET: "10.15"
791+
- IPHONEOS_DEPLOYMENT_TARGET: "13.4"
789792
steps:
790793
- *attach_hermes_workspace
791794
- stop_job_if_apple_artifacts_are_there:

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -112,5 +112,6 @@
112112
"supports-color": "^7.1.0",
113113
"typescript": "5.0.4",
114114
"ws": "^6.2.2"
115-
}
115+
},
116+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
116117
}

packages/react-native/sdks/hermes-engine/utils/build-ios-framework.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ function get_architecture {
2626

2727
function get_deployment_target {
2828
if [[ $1 == "xros" || $1 == "xrsimulator" ]]; then
29-
"$(get_visionos_deployment_target)"
29+
echo "$(get_visionos_deployment_target)"
3030
else
31-
"$(get_ios_deployment_target)"
31+
echo "$(get_ios_deployment_target)"
3232
fi
3333
}
3434

0 commit comments

Comments
 (0)