We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a23b939 commit 886f8eaCopy full SHA for 886f8ea
HomebrewFormula/goad.rb
@@ -0,0 +1,24 @@
1
+class Goad < Formula
2
+ desc "An AWS Lambda powered, highly distributed, load testing tool built in Go."
3
+ homepage "https://goad.io/"
4
+ url "https://github.com/goadapp/goad.git"
5
+ version "1.4.0"
6
+
7
+ depends_on "go" => :build
8
9
+ def install
10
+ ENV["GOPATH"] = buildpath
11
+ ENV["GOBIN"] = buildpath/"bin"
12
+ ENV.prepend_create_path "PATH", buildpath/"bin"
13
14
+ (buildpath/"src/github.com/goadapp/goad").install buildpath.children
15
+ cd "src/github.com/goadapp/goad/" do
16
+ system "make", "build"
17
+ bin.install "build/goad"
18
+ end
19
20
21
+ test do
22
+ system "#{bin}/goad", "--version"
23
24
+end
0 commit comments