From 1cc9d74754673ac3e259594b4092aa5cd72069ca Mon Sep 17 00:00:00 2001 From: Tony Li Date: Mon, 11 Dec 2023 16:46:08 +1300 Subject: [PATCH 1/2] Remove the xcode-14.2 env from the publish pod step --- .buildkite/pipeline.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 26ae5984..61a6216e 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -48,11 +48,6 @@ steps: - label: "⬆️ Publish Podspec" key: "publish" command: .buildkite/publish-pod.sh - # Notice Xcode 14.2, so that we can validate the pod using the pre-Xcode - # 14.3 toolchain and workaround the outdated Alamofire dependency - # deployment target being incompatible with Xcode 14.3+ - env: - IMAGE_ID: xcode-14.2 plugins: *common_plugins depends_on: - "test" From 67ec88407538a786cda3a1a334b73f9df50116ab Mon Sep 17 00:00:00 2001 From: Tony Li Date: Mon, 11 Dec 2023 16:55:00 +1300 Subject: [PATCH 2/2] Add default env --- .buildkite/pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 61a6216e..5d35d662 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -48,6 +48,7 @@ steps: - label: "⬆️ Publish Podspec" key: "publish" command: .buildkite/publish-pod.sh + env: *common_env plugins: *common_plugins depends_on: - "test"