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 c348a9cCopy full SHA for c348a9c
src/commands/pod_install.yml
@@ -10,8 +10,15 @@ parameters:
10
default: "ios"
11
description: The location of the "ios" directory
12
steps:
13
+ - restore_cache:
14
+ keys:
15
+ - cache-pods-
16
- run:
17
name: Install CocoaPods
18
command: |
19
curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf
20
cd <<parameters.pod_install_directory>> && pod install && cd -
21
+ - save_cache:
22
+ paths:
23
+ - <<parameters.pod_install_directory>>/Pods
24
+ key: cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}-{{ .Environment.CACHE_VERSION }}
0 commit comments