terraform-provider-proxmox/go.yml
hestiahacker 5e1e8bb9ec
docs: New developer getting started guide (#888)
* docs: Updated docs (removed broken commands, etc.) and added a script to get a bleeding edge version of golang #704

* docs: Added a guide to help developers who are new to this project

---------

Co-authored-by: hestia <hestia@hax0rbana.org>
2024-01-02 11:56:44 +01:00

17 lines
614 B
YAML

###
# This is an ansible playbook that will install the bleeding edge version of
# golang. This is needed because this project requires a newer version of go
# than is available in any stable Debian release.
#
# To run this playbook:
# sudo apt install -y ansible
# ansible-galaxy install gantsign.ansible-role-golang
# ansible-playbook go.yml
#
# Then either restart your shell, or run `. /etc/profile.d/golang.sh` to
# update your $PATH and you should be able to compile the provider with `make`
###
- name: Install and configure Golang
hosts: localhost
roles:
- role: gantsign.ansible-role-golang