From 519bbbaccd219f64422950a0f11d8acb47756a7e Mon Sep 17 00:00:00 2001 From: Kirill Zhukov <5660531+kirillzh@users.noreply.github.com> Date: Thu, 11 Jul 2024 11:08:39 -0700 Subject: [PATCH] Add Maestro CLI package (#497) Maestro is a tool to run mobile UI tests. https://maestro.mobile.dev/ Resolves https://github.com/cashapp/hermit-packages/issues/407 --- maestro.hcl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 maestro.hcl diff --git a/maestro.hcl b/maestro.hcl new file mode 100644 index 00000000..ba826303 --- /dev/null +++ b/maestro.hcl @@ -0,0 +1,15 @@ +description = "Automate end-to-end UI tests for mobile applications" +binaries = ["maestro/bin/maestro"] +source = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro.zip" +test = "maestro --version" +repository = "https://github.com/mobile-dev-inc/maestro" + +version "1.36.0" { + auto-version { + github-release = "mobile-dev-inc/maestro" + } +} + +sha256sums = { + "https://github.com/mobile-dev-inc/maestro/releases/download/cli-1.36.0/maestro.zip": "67e131cfdc3daebc6010806451117334a322681b1f11ef8d59ae89f17175eea3" +}