This is a similar question to: How do I cache brew install node?
I need go installed for a cross-platform XCode project. This step works perfectly fine but it usually takes 3-4 minutes, just to update homebrew and then it rather quickly fetches the binary.
- run:
name: install Go
command: brew install go
I would be fine with fetching and unpacking the version of go I need myself into the home directory, I just wasn’t what the best course of action is here. Could also I bake that install step into the vm image or should I use caching instead?