38 lines
948 B
Ruby
38 lines
948 B
Ruby
class Flank < Formula
|
|
desc "Massively parallel Android and iOS test runner for Firebase Test Lab"
|
|
homepage "https://github.com/Flank/flank"
|
|
url "https://github.com/Flank/flank/releases/download/v23.01.0/flank.jar"
|
|
sha256 "d81536a39f51681ee1384551190e651559f821fb3ce41aeb570ac633b971396a"
|
|
license "Apache-2.0"
|
|
|
|
livecheck do
|
|
url :stable
|
|
strategy :github_latest
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "0dd5ec848f81aca20a8605653b29e65a6fb091e068f98dfebd65a89bfa33bec0"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
libexec.install "flank.jar"
|
|
bin.write_jar_script libexec/"flank.jar", "flank"
|
|
end
|
|
|
|
test do
|
|
(testpath/"flank.yml").write <<~EOS
|
|
gcloud:
|
|
device:
|
|
- model: Pixel2
|
|
version: "29"
|
|
locale: en
|
|
orientation: portrait
|
|
EOS
|
|
|
|
output = shell_output("#{bin}/flank android doctor")
|
|
assert_match "Valid yml file", output
|
|
end
|
|
end
|