xcversion

Select an Xcode to use by version specifier

The xcode-install gem, which this action depends on, has been sunset. Please migrate to xcodes. You can find a migration guide here: xcpretty/xcode-install/MIGRATION.md

Finds and selects a version of an installed Xcode that best matches the provided Gem::Version requirement specifier
You can either manually provide a specific version using version: or you make use of the .xcode-version file.

xcversion
Supported platforms ios, mac
Author @oysta, @rogerluan

3 Examples

xcversion(version: "8.1") # Selects Xcode 8.1.0
xcversion(version: "~> 8.1.0") # Selects the latest installed version from the 8.1.x set
xcversion # When missing, the version value defaults to the value specified in the .xcode-version file

Parameters

Key Description Default
version The version of Xcode to select specified as a Gem::Version requirement string (e.g. '~> 7.1.0'). Defaults to the value specified in the .xcode-version file *

* = default value is dependent on the user's system


Documentation

To show the documentation in your terminal, run

fastlane action xcversion

CLI

It is recommended to add the above action into your Fastfile, however sometimes you might want to run one-offs. To do so, you can run the following command from your terminal

fastlane run xcversion

To pass parameters, make use of the : symbol, for example

fastlane run xcversion parameter1:"value1" parameter2:"value2"

It's important to note that the CLI supports primitive types like integers, floats, booleans, and strings. Arrays can be passed as a comma delimited string (e.g. param:"1,2,3"). Hashes are not currently supported.

It is recommended to add all fastlane actions you use to your Fastfile.


Source code

This action, just like the rest of fastlane, is fully open source, view the source code on GitHub


Back to actions