From 9fd1cb0ae8e3f71b38a9c4d78054cf4f2b69edbb Mon Sep 17 00:00:00 2001 From: Jade Carino Date: Wed, 29 Oct 2025 11:20:39 +0000 Subject: [PATCH] Add galasactl v0.44.0 to homebrew tap Signed-off-by: Jade Carino --- Casks/g/galasactl.rb | 6 +++--- Casks/g/galasactl@0.44.0.rb | 27 +++++++++++++++++++++++++++ README.md | 4 ++-- 3 files changed, 32 insertions(+), 5 deletions(-) create mode 100644 Casks/g/galasactl@0.44.0.rb diff --git a/Casks/g/galasactl.rb b/Casks/g/galasactl.rb index fd53416..ca21b7a 100644 --- a/Casks/g/galasactl.rb +++ b/Casks/g/galasactl.rb @@ -7,10 +7,10 @@ cask "galasactl" do arch arm: "arm64", intel: "x86_64" - version "0.43.0" + version "0.44.0" # Create the sha256 using shasum --algorithm 256 - sha256 arm: "bb075d84b1ff9eb22f812b030542f5845b05cb3ef5e4959bb555bbd9cc9e2a49", - intel: "7c0818a4e98ffdbfe2ada0a4c970848ab4883c95f0b2d071076d3ce026542d16" + sha256 arm: "ac1d1f18a308f627fa63280d3aa8b127cc1de61c3533bf4872a44ee5972bd79c", + intel: "3d056cbf66d23ec86e348967b581a0235832fb4d8408212563486594dd623ee5" url "https://github.com/galasa-dev/galasa/releases/download/v#{version}/galasactl-darwin-#{arch}", verified: "github.com/galasa-dev/galasa/releases/" diff --git a/Casks/g/galasactl@0.44.0.rb b/Casks/g/galasactl@0.44.0.rb new file mode 100644 index 0000000..f999689 --- /dev/null +++ b/Casks/g/galasactl@0.44.0.rb @@ -0,0 +1,27 @@ +# +# Copyright contributors to the Galasa project +# +# SPDX-License-Identifier: EPL-2.0 +# + +cask "galasactl@0.44.0" do + arch arm: "arm64", intel: "x86_64" + + version "0.44.0" + # Create the sha256 using shasum --algorithm 256 + sha256 arm: "ac1d1f18a308f627fa63280d3aa8b127cc1de61c3533bf4872a44ee5972bd79c", + intel: "3d056cbf66d23ec86e348967b581a0235832fb4d8408212563486594dd623ee5" + + url "https://github.com/galasa-dev/galasa/releases/download/v#{version}/galasactl-darwin-#{arch}", + verified: "github.com/galasa-dev/galasa/releases/" + name "Galasa Client" + desc "Client to launch Galasa tests on a Galasa service or locally. Version 0.44.0" + homepage "https://galasa.dev/" + + livecheck do + url :url + strategy :github_latest + end + + binary "galasactl-darwin-#{arch}", target: "galasactl" +end diff --git a/README.md b/README.md index 359e9a2..7612950 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ brew install --no-quarantine galasactl@x.xx.x For example: ```bash -brew install --no-quarantine galasactl@0.43.0 +brew install --no-quarantine galasactl@0.44.0 ``` > **Note:** The `--no-quarantine` flag is currently required because otherwise it's not possible to run the galasactl binary. See documentation about this at [https://galasa.dev](https://galasa.dev). @@ -69,7 +69,7 @@ Use the helper script `add-version.sh` to add a new version: For example: ```bash -./add-version.sh --version 0.43.0 +./add-version.sh --version 0.44.0 ``` This will: