From a1eedab588b9506fba2e728ce9a00b5cf95f5f54 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 15 Jun 2022 09:40:02 +1000 Subject: [PATCH] =?UTF-8?q?fixup!=20Use=20Xcode=2013.4.1=20in=20CI=20?= =?UTF-8?q?=E2=80=93=20Required=20for=20the=205.5=20Swift=20tools?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .buildkite/pipeline.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index d5185deb..1966747d 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -49,7 +49,11 @@ steps: ################# - label: "🔬 Validating Podspec" key: "validate" - command: "validate_podspec" + command: | + # Workaround for https://github.com/Automattic/buildkite-ci/issues/79 + gem install bundler + + validate_podspec env: *common_env plugins: *common_plugins artifact_paths: ".build/logs/*.log" @@ -68,7 +72,11 @@ steps: ################# - label: "🧹 Lint" key: "lint" - command: "lint_pod" + command: | + # Workaround for https://github.com/Automattic/buildkite-ci/issues/79 + gem install bundler + + lint_pod env: *common_env plugins: *common_plugins