homebrew-core/Formula/ghr.rb

37 lines
1.1 KiB
Ruby
Raw Normal View History

class Ghr < Formula
desc "Upload multiple artifacts to GitHub Release in parallel"
homepage "https://tcnksm.github.io/ghr"
url "https://github.com/tcnksm/ghr/archive/v0.12.2.tar.gz"
sha256 "982d090add119b336bb70edb1c394c9ea835135708fa66d754d5159dcbe8c467"
2018-12-28 15:49:48 +00:00
bottle do
cellar :any_skip_relocation
2019-07-08 15:51:05 +00:00
sha256 "2930c3d3530bbe764251ca49f95e046bf879f547f53204dd2897030d04eb95a5" => :mojave
sha256 "6fa326ecfc938188215160eb8808a927430c91171279248a42b45f6926f35826" => :high_sierra
sha256 "bc391b72bfb16a2669fd79126b8844a4a7293bf04eab44bb562acb76335d54d9" => :sierra
2018-12-28 15:49:48 +00:00
end
depends_on "dep" => :build
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
dir = buildpath/"src/github.com/tcnksm/ghr"
dir.install Dir["*"]
cd dir do
# Avoid running `go get`
inreplace "Makefile", "go get ${u} -d", ""
system "make", "build"
bin.install "bin/ghr" => "ghr"
prefix.install_metafiles
end
end
test do
ENV["GITHUB_TOKEN"] = nil
args = "-username testbot -repository #{testpath} v#{version} #{Dir.pwd}"
assert_include "token not found", shell_output("#{bin}/ghr #{args}", 15)
end
end