From f1d63c1d5db62e9e7f1cf056cce8d76a3f5e088e Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 8 Jun 2023 15:33:25 +1000 Subject: [PATCH] Use Xcode 14.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was done to address the following CI failure when building with the Gutenberg XCFramework: ``` ▸ Linking WordPress ⚠️ ld: Could not find or use auto-linked library 'swiftCompatibility56' ❌ ld: symbol(s) not found for architecture x86_64 ``` https://buildkite.com/automattic/wordpress-ios/builds/14356#01885545-c05a-43a8-b475-d0d683857672 --- .buildkite/cache-builder.yml | 2 +- .buildkite/pipeline.yml | 2 +- .buildkite/release-builds.yml | 2 +- .xcode-version | 2 +- Gemfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.buildkite/cache-builder.yml b/.buildkite/cache-builder.yml index 0b44a369a583..ccc31609f31e 100644 --- a/.buildkite/cache-builder.yml +++ b/.buildkite/cache-builder.yml @@ -14,7 +14,7 @@ common_params: # Common environment values to use with the `env` key. - &common_env # Be sure to also update the `.xcode-version` file when updating the Xcode image/version here - IMAGE_ID: xcode-14.2 + IMAGE_ID: xcode-14.3 steps: diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 0cf2db6a8a2e..a272cbcdb7b9 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -9,7 +9,7 @@ common_params: # Common environment values to use with the `env` key. - &common_env # Be sure to also update the `.xcode-version` file when updating the Xcode image/version here - IMAGE_ID: xcode-14.2 + IMAGE_ID: xcode-14.3 # This is the default pipeline – it will build and test the app steps: diff --git a/.buildkite/release-builds.yml b/.buildkite/release-builds.yml index 120d158d6dc8..e4b950174abd 100644 --- a/.buildkite/release-builds.yml +++ b/.buildkite/release-builds.yml @@ -11,7 +11,7 @@ common_params: # Common environment values to use with the `env` key. - &common_env # Be sure to also update the `.xcode-version` file when updating the Xcode image/version here - IMAGE_ID: xcode-14.2 + IMAGE_ID: xcode-14.3 steps: diff --git a/.xcode-version b/.xcode-version index 6b5bab0678ab..c32eced3acd0 100644 --- a/.xcode-version +++ b/.xcode-version @@ -1 +1 @@ -14.2 +14.3 diff --git a/Gemfile b/Gemfile index e85cfbf1e286..5b415ca9c6b0 100644 --- a/Gemfile +++ b/Gemfile @@ -2,7 +2,7 @@ source 'https://rubygems.org' -# 1.12.x and higher, starting from 1.12.1 +# 1.12.x and higher, starting from 1.12.1, because that hotfix fixes Xcode 14.3 compatibility gem 'cocoapods', '~> 1.12', '>= 1.12.1' gem 'commonmarker' gem 'danger', '~> 9.3'