├── .ansible-lint ├── .github └── workflows │ └── publish-role.yml ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── defaults └── main.yml ├── library └── developer_mode.py ├── meta └── main.yml ├── tasks ├── main.yml └── xcode8_packages.yml └── tests ├── ansible.cfg └── site.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/workflows/publish-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/.github/workflows/publish-role.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[co] 2 | *.retry 3 | .vscode 4 | .DS_Store -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /library/developer_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/library/developer_mode.py -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/xcode8_packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/tasks/xcode8_packages.yml -------------------------------------------------------------------------------- /tests/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | roles_path = ../../ -------------------------------------------------------------------------------- /tests/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macstadium/ansible-role-xcode/HEAD/tests/site.yml --------------------------------------------------------------------------------