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 9df99d7 commit b156c1bCopy full SHA for b156c1b
src/jobs/ios_build_and_test.yml
@@ -24,6 +24,10 @@ parameters:
24
type: string
25
default: ""
26
description: The location of the "ios" directory for `pod install`. Will skip `pod install` if missing.
27
+ pod_cache:
28
+ description: Save and restore the CocoaPods cache? Defaults to true
29
+ type: boolean
30
+ default: true
31
yarn_cache:
32
description: Should we cache after yarn install? Defaults to true
33
type: boolean
@@ -126,6 +130,7 @@ steps:
126
130
steps:
127
131
- pod_install:
128
132
pod_install_directory: <<parameters.pod_install_directory>>
133
+ cache: <<parameters.pod_cache>>
129
134
- ios_build:
135
project_path: <<parameters.project_path>>
136
derived_data_path: <<parameters.derived_data_path>>
0 commit comments