homebrew-core/Formula/circleci.rb
2018-12-03 08:34:40 +01:00

48 lines
2.1 KiB
Ruby

class Circleci < Formula
desc "Enables you to reproduce the CircleCI environment locally"
homepage "https://circleci.com/docs/2.0/local-cli/"
# Updates should be pushed no more frequently than once per week.
url "https://github.com/CircleCI-Public/circleci-cli.git",
:tag => "v0.1.4308",
:revision => "d8266a1116515cc153ca32802c52d50134b438cf"
bottle do
cellar :any_skip_relocation
sha256 "c182108864f75e1181f7ef85176f5c372102826527af4bfb2a634712210ac32b" => :mojave
sha256 "175b7d084ee7ec062ad8cf43f3f785d19075d4c2a0089cf64cfc0d30dac3282e" => :high_sierra
sha256 "c625bb417e46d0990fd380fbce355735c18833f01ef64274256cc2950b510967" => :sierra
end
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
dir = buildpath/"src/github.com/CircleCI-Public/circleci-cli"
dir.install buildpath.children
cd dir do
commit = Utils.popen_read("git rev-parse --short HEAD").chomp
ldflags = %W[
-s -w
-X github.com/CircleCI-Public/circleci-cli/cmd.PackageManager=homebrew
-X github.com/CircleCI-Public/circleci-cli/version.Version=#{version}
-X github.com/CircleCI-Public/circleci-cli/version.Commit=#{commit}
]
system "go", "build", "-ldflags", ldflags.join(" "),
"-o", bin/"circleci"
prefix.install_metafiles
end
end
test do
# assert basic script execution
assert_match /#{version}\+.{7}/, shell_output("#{bin}/circleci version").strip
# assert script fails because 2.1 config is not supported for local builds
(testpath/".circleci.yml").write("{version: 2.1}")
output = shell_output("#{bin}/circleci build -c #{testpath}/.circleci.yml 2>&1", 255)
assert_match "Local builds do not support that version at this time", output
# assert update is not included in output of help meaning it was not included in the build
assert_match "update This command is unavailable on your platform", shell_output("#{bin}/circleci help")
assert_match "`update` is not available because this tool was installed using `homebrew`.", shell_output("#{bin}/circleci update")
end
end