Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add brewfile for easier installation of depdendencies #19

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.artifacts
Brewfile.lock.json
10 changes: 10 additions & 0 deletions Brewfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
tap "hashicorp/tap"

brew "hashicorp/tap/packer"
brew "hashicorp/tap/nomad"
brew "hashicorp/tap/consul"

brew "cdrtools"

brew "lima"
brew "socket_vmnet"
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,21 @@ The following tools are required to run these scenarios:
* [Lima](https://lima-vm.io/)
* [Shikari](https://github.com/ranjandas/shikari)

> NOTE: all the above except shikari can be installed using Homebrew
You can use the Brewfile shipped in this repository to install all the dependent tools.

```
brew bundle
Using hashicorp/tap
==> Downloading https://formulae.brew.sh/api/formula.jws.json

Using hashicorp/tap/packer
Using hashicorp/tap/nomad
Using hashicorp/tap/consul
Using cdrtools
Using lima
Using socket_vmnet
Homebrew Bundle complete! 7 Brewfile dependencies now installed.
```

## Usage

Expand Down