Commit 47bd6854 authored by Andrew Murray's avatar Andrew Murray
Browse files

Use latest Xcode version

parent d438254d
...@@ -4,8 +4,9 @@ set -e ...@@ -4,8 +4,9 @@ set -e
if [ "$PLAT" == "arm64" ] || [ "$PLAT" == "universal2" ]; then if [ "$PLAT" == "arm64" ] || [ "$PLAT" == "universal2" ]; then
if [[ "$(xcrun -show-sdk-version)" == 10.* ]]; then if [[ "$(xcrun -show-sdk-version)" == 10.* ]]; then
if ([ "$GITHUB_WORKFLOW" != "" ] || [ "$PIPELINE_WORKSPACE" != "" ]) && [ $(ls /Applications | grep Xcode_12.*\.app) ]; then latestXcode=$(ls /Applications | grep Xcode[_0-9\.]*\.app | sort -V | tail -n 1)
sudo xcode-select -switch /Applications/Xcode_12.*.app if ([ "$GITHUB_WORKFLOW" != "" ] || [ "$PIPELINE_WORKSPACE" != "" ]) && [ $latestXcode ]; then
sudo xcode-select -switch /Applications/$latestXcode.app
else else
echo "Need SDK>=11 for arm64 builds. Please run xcode-select to select a newer SDK" echo "Need SDK>=11 for arm64 builds. Please run xcode-select to select a newer SDK"
exit 1 exit 1
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment