Rome looks like an awesome tool! Quick question about its usage:
In the example workflow, it would appear that there is an assumption that the entire contents of the current Cartfile.resolved will either be fully available for download or not. However, in the case where you have internal frameworks that are constantly being updated, it could likely be the case that all frameworks but the one you just updated are available in your s3 cache.
Would it be possible to have a command like the following to allow building only the dependencies that are currently uncached? e.g.:
rome download && carthage build `rome unavailable`
Say for example that APIClient was the only library that was uncached. This would evaluate to:
rome download && carthage build APIClient
Let me know if this is already possible or isn't needed for another reason. Thanks!
Rome looks like an awesome tool! Quick question about its usage:
In the example workflow, it would appear that there is an assumption that the entire contents of the current
Cartfile.resolvedwill either be fully available for download or not. However, in the case where you have internal frameworks that are constantly being updated, it could likely be the case that all frameworks but the one you just updated are available in your s3 cache.Would it be possible to have a command like the following to allow building only the dependencies that are currently uncached? e.g.:
Say for example that
APIClientwas the only library that was uncached. This would evaluate to:rome download && carthage build APIClientLet me know if this is already possible or isn't needed for another reason. Thanks!