Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.11 KB

README.md

File metadata and controls

50 lines (34 loc) · 1.11 KB

Ansible Collection for FRC

This collection contains roles related to FIRST Robotics Competition (FRC), specifically for WPILib related tools.

The following roles are included:

  • wpilib: manages installations of WPILib development environments
  • vision_tools: installs Balena Etcher and GRIP

Installation

Use ansible-galaxy to install the collection.

ansible-galaxy collection install git+https://github.com/FRC7540/ansible-collection-frc.git

Quick Start

If you just want to install wpilib for the current user, create a playbook site.yml with the following content.

---
- hosts:
    - localhost
  roles:
    - frc7540.frc.wpilib
    - frc7540.frc.vision_tools

Run it using:

ansible-playbook site.yml -bK

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.