From c53783b654a844d886396f499598961e3db2334d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 18 Apr 2024 06:32:00 +0000 Subject: [PATCH 1/2] gitlab-ci-local 4.48.1 Signed-off-by: Rui Chen gitlab-ci-local: add missing schema.json Signed-off-by: Rui Chen --- Formula/g/gitlab-ci-local.rb | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Formula/g/gitlab-ci-local.rb b/Formula/g/gitlab-ci-local.rb index 54cfdcc34846..d61d3a34b997 100644 --- a/Formula/g/gitlab-ci-local.rb +++ b/Formula/g/gitlab-ci-local.rb @@ -3,8 +3,8 @@ class GitlabCiLocal < Formula desc "Run gitlab pipelines locally as shell executor or docker executor" homepage "https://github.com/firecow/gitlab-ci-local" - url "https://registry.npmjs.org/gitlab-ci-local/-/gitlab-ci-local-4.47.0.tgz" - sha256 "54979ce76f9539651bcb2597007861be7ee7578e2b19f7e6f91a1cd34b5cb730" + url "https://registry.npmjs.org/gitlab-ci-local/-/gitlab-ci-local-4.48.1.tgz" + sha256 "1176deb0cc5e0a17a504e0260ae874c4e3681384361359000b61fe3fe595ef37" license "MIT" head "https://github.com/firecow/gitlab-ci-local.git", branch: "master" @@ -20,9 +20,18 @@ class GitlabCiLocal < Formula depends_on "node" + # add missing schema.json file + # upstream bug report, https://github.com/firecow/gitlab-ci-local/issues/1190 + resource "schema.json" do + url "https://raw.githubusercontent.com/firecow/gitlab-ci-local/master/src/schema/schema.json" + sha256 "81578fbb5a57ed922c66135c3bd5ddc0791ba3478c7bd64142997f6d3c5bd53c" + end + def install system "npm", "install", *Language::Node.std_npm_install_args(libexec) bin.install_symlink Dir["#{libexec}/bin/*"] + + (libexec/"lib/node_modules/gitlab-ci-local/src/schema").install resource("schema.json") end test do From 60dd599a258eeaf9d99a92edbf3c26d061f8107f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 19 Apr 2024 18:52:30 +0000 Subject: [PATCH 2/2] gitlab-ci-local: update 4.48.1 bottle. --- Formula/g/gitlab-ci-local.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/gitlab-ci-local.rb b/Formula/g/gitlab-ci-local.rb index d61d3a34b997..bc2fd63a4965 100644 --- a/Formula/g/gitlab-ci-local.rb +++ b/Formula/g/gitlab-ci-local.rb @@ -9,13 +9,13 @@ class GitlabCiLocal < Formula head "https://github.com/firecow/gitlab-ci-local.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "36ff1417be6a5ce205649240938cc7f90126133f5140d3e4d77fc9816dbb23de" - sha256 cellar: :any_skip_relocation, arm64_ventura: "36ff1417be6a5ce205649240938cc7f90126133f5140d3e4d77fc9816dbb23de" - sha256 cellar: :any_skip_relocation, arm64_monterey: "36ff1417be6a5ce205649240938cc7f90126133f5140d3e4d77fc9816dbb23de" - sha256 cellar: :any_skip_relocation, sonoma: "46d5e2045bdbc988bb39cc0a3f37aaeb6d2d4f3bf81078f35ea79c9db6c05834" - sha256 cellar: :any_skip_relocation, ventura: "46d5e2045bdbc988bb39cc0a3f37aaeb6d2d4f3bf81078f35ea79c9db6c05834" - sha256 cellar: :any_skip_relocation, monterey: "46d5e2045bdbc988bb39cc0a3f37aaeb6d2d4f3bf81078f35ea79c9db6c05834" - sha256 cellar: :any_skip_relocation, x86_64_linux: "36ff1417be6a5ce205649240938cc7f90126133f5140d3e4d77fc9816dbb23de" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "dc8ab40b8946b920377d36672bf4f185d7fe799b320aaa17cfad4500e6019dfc" + sha256 cellar: :any_skip_relocation, arm64_ventura: "dc8ab40b8946b920377d36672bf4f185d7fe799b320aaa17cfad4500e6019dfc" + sha256 cellar: :any_skip_relocation, arm64_monterey: "dc8ab40b8946b920377d36672bf4f185d7fe799b320aaa17cfad4500e6019dfc" + sha256 cellar: :any_skip_relocation, sonoma: "8d144db52f116a8ac9ae6785e300683843b841b9ba849161169d588c39ccb087" + sha256 cellar: :any_skip_relocation, ventura: "8d144db52f116a8ac9ae6785e300683843b841b9ba849161169d588c39ccb087" + sha256 cellar: :any_skip_relocation, monterey: "8d144db52f116a8ac9ae6785e300683843b841b9ba849161169d588c39ccb087" + sha256 cellar: :any_skip_relocation, x86_64_linux: "dc8ab40b8946b920377d36672bf4f185d7fe799b320aaa17cfad4500e6019dfc" end depends_on "node"