From 43cf565866ca271bb854e77bbca4c44206eb645e Mon Sep 17 00:00:00 2001 From: Tim Yung Date: Wed, 9 Jun 2021 18:46:53 -0700 Subject: [PATCH] RN: Use `OS=latest` for Xcode in CI Summary: Changes React Native CI (both Sandcastle and Circle CI) to use `OS=latest` instead of a hardcoded version number. This reduces the number of hardcoded configurations needed to be updated for new Xcode versions by one. Changelog: [Internal] Reviewed By: fkgozali Differential Revision: D29013193 fbshipit-source-id: 3c081de1b74a130867b2a599d3e7333846c96cf7 --- scripts/.tests.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/.tests.env b/scripts/.tests.env index 2c833a8b454..defef2eb98a 100644 --- a/scripts/.tests.env +++ b/scripts/.tests.env @@ -24,7 +24,7 @@ export AVD_ABI=x86 export ANDROID_DISABLE_AVD_TESTS=1 ## IOS ## -export IOS_TARGET_OS="14.5" +export IOS_TARGET_OS="latest" export IOS_DEVICE="iPhone 8" export SDK_IOS="iphonesimulator"