67 lines
2.1 KiB
Ruby
67 lines
2.1 KiB
Ruby
require "language/go"
|
|
|
|
class Bitrise < Formula
|
|
desc "Command-line automation tool"
|
|
homepage "https://github.com/bitrise-io/bitrise"
|
|
url "https://github.com/bitrise-io/bitrise/archive/1.0.0.tar.gz"
|
|
sha256 "364476e0bbdb75a09c2b500b83e3049293c47679d4fb9023a53addc4a61eb9f3"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "49b2458062224ee1071a12e408182fc9581ca08c135cddb68b7b17217b265dd3" => :yosemite
|
|
sha256 "5ee243d58e16ca5b70fd65d4590da15bd876eef7b0065d9190d3d7f4c7172efd" => :mavericks
|
|
sha256 "8322b383e4e32e7636d8c765256e7ce0005192f4dc6eb998cb31648d2858cb24" => :mountain_lion
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
resource "envman" do
|
|
url "https://github.com/bitrise-io/envman/archive/0.9.8.tar.gz"
|
|
sha256 "21a952dfe4f0e27ed9d340fe1a445942b6429cf9cc04b6ca04e72a5bb577c939"
|
|
end
|
|
|
|
resource "stepman" do
|
|
url "https://github.com/bitrise-io/stepman/archive/0.9.14.tar.gz"
|
|
sha256 "e8153e409009d15f2a74909ccceb1cf616500da06e0e0071ac39b1b42821dff2"
|
|
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
|
|
format_version: 1.0.0
|
|
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
|
|
workflows:
|
|
test_wf:
|
|
steps:
|
|
- script:
|
|
inputs:
|
|
- content: printf 'Test - OK' > brew.test.file
|
|
EOS
|
|
|
|
# setup with --minimal flag, to skip the included `brew doctor` check
|
|
system "#{bin}/bitrise", "setup", "--minimal"
|
|
# run the defined test_wf workflow
|
|
system "#{bin}/bitrise", "run", "test_wf"
|
|
assert_equal "Test - OK", (testpath/"brew.test.file").read.chomp
|
|
end
|
|
end
|