From 864cdf3383695ec43d22da457de19952a6d86e21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Fri, 30 Oct 2020 23:00:34 -0700 Subject: [PATCH] Stop using S3 CocoaPods Specs mirror (#30265) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/30265 The CocoaPods Specs mirror provided by Circle CI is no longer supported, and is no longer necessary, as of CocoaPods v1.8. We are already using the CDN in the Podfile, so the step may be removed from the Circle CI config. Reference: https://circleci.com/docs/2.0/testing-ios/#optimizing-cocoapods Changelog: [Internal] Reviewed By: fkgozali Differential Revision: D24601585 fbshipit-source-id: c794102cf573e0cf47ae936bf3c1eb386e089315 --- .circleci/config.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a3b1fdb2812..5252f84c6d5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -407,10 +407,6 @@ jobs: name: Set USE_FRAMEWORKS=1 command: echo "export USE_FRAMEWORKS=1" >> $BASH_ENV - - run: - name: Fetch CocoaPods Specs - command: | - curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf - run: name: Setup the CocoaPods environment command: pod setup @@ -421,10 +417,6 @@ jobs: name: Generate RNTesterPods Workspace command: cd packages/rn-tester && bundle exec pod install --verbose - - run: - name: Generate RNTesterPods Xcode Workspace - command: pushd packages/rn-tester && bundle exec pod install --verbose && popd - # ------------------------- # Runs iOS unit tests - when: