carthage - netguru/highway GitHub Wiki

Description

Used to run carthage for your project.

Parameters

Name Description Required Type Default
command Command that should be used. False Enum("bootstrap", "update") "bootstrap"
github_token Your GitHub access token. Setting up Carthage with access token will allow it to download libraries without hitting API rate limit. This way Carthage step will run faster - if library can be downloaded, Carthage will do that, rather than compiling dependency. False String -
platforms Define which platform to build for. True Set(Enum("macos", "ios", "tvos", "watchos")) -

Example

bootstrap:
    default:
        - carthage:
            command: "bootstrap"
            platforms:
                - ios
                - watchos