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 0d312d4 commit f18183fCopy full SHA for f18183f
src/jobs/ios_build.yml
@@ -22,6 +22,10 @@ parameters:
22
type: string
23
default: ""
24
description: The location of the "ios" directory for `pod install`. Will skip `pod install` if missing.
25
+ pod_cache:
26
+ description: Save and restore the CocoaPods cache? Defaults to true
27
+ type: boolean
28
+ default: true
29
yarn_cache:
30
description: Should we cache after yarn install? Defaults to true
31
type: boolean
@@ -121,6 +125,7 @@ steps:
121
125
steps:
122
126
- pod_install:
123
127
pod_install_directory: <<parameters.pod_install_directory>>
128
+ cache: <<parameters.pod_cache>>
124
129
- ios_build:
130
project_path: <<parameters.project_path>>
131
derived_data_path: <<parameters.derived_data_path>>
0 commit comments