Skip to content

Commit

Permalink
feat: add pod_cache param to ios_build job (react-native-community#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
devnev authored Feb 15, 2022
1 parent 0d312d4 commit f18183f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/jobs/ios_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ parameters:
type: string
default: ""
description: The location of the "ios" directory for `pod install`. Will skip `pod install` if missing.
pod_cache:
description: Save and restore the CocoaPods cache? Defaults to true
type: boolean
default: true
yarn_cache:
description: Should we cache after yarn install? Defaults to true
type: boolean
Expand Down Expand Up @@ -121,6 +125,7 @@ steps:
steps:
- pod_install:
pod_install_directory: <<parameters.pod_install_directory>>
cache: <<parameters.pod_cache>>
- ios_build:
project_path: <<parameters.project_path>>
derived_data_path: <<parameters.derived_data_path>>
Expand Down

0 comments on commit f18183f

Please sign in to comment.