jasesuperhero / ansible-role-xcode-1

Ansible Role - Xcode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ansible Role: Xcode

GPL-3.0 licensed Build Status

Installs Xcode on MacOS according to supplied variables.

Requirements

The role is capable of installing Xcode 8 and above.

The Xcode installation requires a pre-downloaded Xcode xip file on the target machine. You can find all Xcode versions in the Apple Downloads Page.

A UI session is also required. This means the user you are using to execute the role must be logged on to the OSX machine.

The role expects Spotlight to be enabled. It uses Spotlight search to check whether Xcode is already installed.

Role Variables

Role variables and their default values are listed below. You can find all default variables in defaults/main.yml

xcode_xip_location:

The Xcode xip location on the target computer.

xcode_major_version:

The major Xcode version to be installed. The way extra packages are installed varies between Xcode versions. That is why the major version must be known when running the provisioning scripts.

xcode_build: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild

The path to the xcodebuild tool.

xcode_packages_location: /Applications/Xcode.app/Contents/Resources/Packages

The directory containing all extra Xcode packages to be installed.

Dependencies

None.

Example Playbook

- hosts: localhost
  vars:
    xcode_xip_location: '/Users/user/Downloads/Xcode_10.1.xip'
    xcode_major_version: 10
  roles:
    - xcode

License

GPL-3.0

Author Information

This role was created in 2019 by MacStadium, Inc.

Maintainer(s)

About

Ansible Role - Xcode

License:GNU General Public License v3.0


Languages

Language:Python 100.0%