2015-08-05 14:12:14 +00:00
|
|
|
require "language/go"
|
|
|
|
|
|
|
|
class Bitrise < Formula
|
|
|
|
desc "Command-line automation tool"
|
|
|
|
homepage "https://github.com/bitrise-io/bitrise"
|
2015-10-19 11:49:35 +00:00
|
|
|
url "https://github.com/bitrise-io/bitrise/archive/1.2.3.tar.gz"
|
|
|
|
sha256 "f884a0066503e8f344f99e59a57e3015476fa09ae898cd53cd664a045fbfc7cd"
|
2015-08-05 14:12:14 +00:00
|
|
|
|
2015-08-07 07:48:03 +00:00
|
|
|
bottle do
|
2015-09-13 11:32:36 +00:00
|
|
|
cellar :any_skip_relocation
|
2015-10-19 12:34:27 +00:00
|
|
|
sha256 "5c6b979dd4985f0e4e404b8095e07b7c56f1c57247bbbf7d8c5968637de8f987" => :el_capitan
|
|
|
|
sha256 "def03fa711dcb8b875e30ff2d9e26b91f8c873add84fa3ddcedf1f87b191cb12" => :yosemite
|
|
|
|
sha256 "8fd6e7e71d448cbbb82487141a8415f98343df3157e161ab05798c605bdb5ee0" => :mavericks
|
2015-08-07 07:48:03 +00:00
|
|
|
end
|
|
|
|
|
2015-08-05 14:12:14 +00:00
|
|
|
depends_on "go" => :build
|
|
|
|
|
|
|
|
resource "envman" do
|
2015-10-07 09:19:08 +00:00
|
|
|
url "https://github.com/bitrise-io/envman/archive/0.9.10.tar.gz"
|
|
|
|
sha256 "ca1912d53c495d1a5492c81df25591baae86126e6d9cf556f8d35f22a46ea95c"
|
2015-08-05 14:12:14 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
resource "stepman" do
|
2015-10-07 09:19:08 +00:00
|
|
|
url "https://github.com/bitrise-io/stepman/archive/0.9.17.tar.gz"
|
|
|
|
sha256 "d4eee2cc46f63f3c842d86d9c04f0de71541eaff45d817d16ffd116673383ee8"
|
2015-08-05 14:12:14 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def go_install_package(basepth, pkgname)
|
|
|
|
mkdir_p "#{basepth}/src/github.com/bitrise-io"
|
|
|
|
ln_s basepth, "#{basepth}/src/github.com/bitrise-io/#{pkgname}"
|
|
|
|
|
|
|
|
ENV["GOPATH"] = "#{basepth}/Godeps/_workspace:#{basepth}"
|
|
|
|
Language::Go.stage_deps resources, "#{basepth}/src"
|
|
|
|
system "go", "build", "-o", "#{bin}/#{pkgname}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
resource("envman").stage do
|
|
|
|
go_install_package(Dir.pwd, "envman")
|
|
|
|
end
|
|
|
|
|
|
|
|
resource("stepman").stage do
|
|
|
|
go_install_package(Dir.pwd, "stepman")
|
|
|
|
end
|
|
|
|
|
|
|
|
go_install_package(buildpath, "bitrise")
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"bitrise.yml").write <<-EOS.undent
|
2015-10-07 09:19:08 +00:00
|
|
|
format_version: 1.1.0
|
2015-09-13 09:52:03 +00:00
|
|
|
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
|
2015-08-05 14:12:14 +00:00
|
|
|
workflows:
|
|
|
|
test_wf:
|
|
|
|
steps:
|
|
|
|
- script:
|
|
|
|
inputs:
|
2015-08-14 14:52:10 +00:00
|
|
|
- content: printf 'Test - OK' > brew.test.file
|
2015-08-05 14:12:14 +00:00
|
|
|
EOS
|
|
|
|
|
2015-08-14 14:52:10 +00:00
|
|
|
# setup with --minimal flag, to skip the included `brew doctor` check
|
|
|
|
system "#{bin}/bitrise", "setup", "--minimal"
|
|
|
|
# run the defined test_wf workflow
|
2015-08-05 14:12:14 +00:00
|
|
|
system "#{bin}/bitrise", "run", "test_wf"
|
|
|
|
assert_equal "Test - OK", (testpath/"brew.test.file").read.chomp
|
|
|
|
end
|
|
|
|
end
|