devops: start using Xcode 13 to compile Firefox (#9401)

It didn't compile withh Xcode 12.2, but does compile with Xcode 13
locally for me.

Moving on to Xcode 13 then.
This commit is contained in:
Andrey Lushnikov 2021-10-08 13:05:32 -07:00 committed by GitHub
parent ab4f99d443
commit d278675a62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -26,9 +26,9 @@ rm -rf .mozconfig
if [[ "$(uname)" == "Darwin" ]]; then
CURRENT_HOST_OS_VERSION=$(getMacVersion)
# As of Oct 2021, building Firefox requires XCode 12.2
# As of Oct 2021, building Firefox requires XCode 13
if [[ "${CURRENT_HOST_OS_VERSION}" == "11."* ]]; then
selectXcodeVersionOrDie "12.2"
selectXcodeVersionOrDie "13"
else
echo "ERROR: ${CURRENT_HOST_OS_VERSION} is not supported"
exit 1

View File

@ -26,9 +26,9 @@ rm -rf .mozconfig
if [[ "$(uname)" == "Darwin" ]]; then
CURRENT_HOST_OS_VERSION=$(getMacVersion)
# As of Oct 2021, building Firefox requires XCode 12.2
# As of Oct 2021, building Firefox requires XCode 13
if [[ "${CURRENT_HOST_OS_VERSION}" == "11."* ]]; then
selectXcodeVersionOrDie "12.2"
selectXcodeVersionOrDie "13"
else
echo "ERROR: ${CURRENT_HOST_OS_VERSION} is not supported"
exit 1