Noticed one build config issue, but that most likely won’t save you as much time as you want to.
You have a workflow called branches
with steps in this order:
- cocoapods-install@1.6.1: {}
- cache-pull@0.9.2: {}
You should reverse these two steps, cache pull should be before cocoapods install, or else cocoapods install can’t leverage the cache (as it’s simply not there before the cache-pull step). See:
Setup
(If not added already)
Put the Cache:Pull step after the Git Clone and before the CocoaPods Install steps
Put the Cache:Push step to the very end of the Workflow
If you use v1.0 or newer of the Cache steps and the latest CocoaPods Install step then that’s all you have to do.
For older versions please follow these additional steps:
Select the Cache:Push step and specify the following paths for caching (Cache paths input):./Pods -> ./Podfile.lock
_If your Podfile and Pods directo…