We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade4b31 commit 96b0f3fCopy full SHA for 96b0f3f
src/commands/pod_install.yml
@@ -10,8 +10,16 @@ parameters:
10
default: "ios"
11
description: The location of the "ios" directory
12
steps:
13
+ - restore_cache:
14
+ keys:
15
+ - cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}-{{ .Environment.CACHE_VERSION }}
16
+ - cache-pods-
17
- run:
18
name: Install CocoaPods
19
command: |
20
curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf
21
cd <<parameters.pod_install_directory>> && pod install && cd -
22
+ - save_cache:
23
+ paths:
24
+ - <<parameters.pod_install_directory>>/Pods
25
+ key: cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}-{{ .Environment.CACHE_VERSION }}
0 commit comments