Skip to content

Commit

Permalink
DEN Agent version update - v2.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
J. Doe (https://devcenter.bitrise.io/builds/setting-your-git-credentials-on-build-machines/) committed Apr 15, 2024
1 parent 77222e8 commit 180816b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Formula/bitrise-den-agent.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ class BitriseDenAgent < Formula
desc "CLI for Bitrise DEN agent"
homepage "https://github.com/bitrise-io/bitrise-den-agent"
url "https://github.com/bitrise-io/bitrise-den-agent.git",
tag: "v2.31.5",
revision: "492cb372e4987484167d75eaedcaa43d278707e6"
tag: "v2.33.0",
revision: "70889442a7f2796ed3a0bc30f4e9a5b5585fd605"
license ""

on_macos do
if Hardware::CPU.arm?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.31.5/bitrise-den-agent-darwin-arm64.zip"
sha256 "e0d408367e292097f09129bf855db14e80c7947e330f1835b4cba8e695d77728"
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.33.0/bitrise-den-agent-darwin-arm64.zip"
sha256 "c34bfe58d65d3f880cafce6561cf8ad56a5d8e6eb87d7c8c47321d7898599883"
end
if Hardware::CPU.intel?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.31.5/bitrise-den-agent-darwin-amd64.zip"
sha256 "8b24fea0017bd3677a1b52ec149e887298f68913b849cdf3b57cf45c501420a9"
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.33.0/bitrise-den-agent-darwin-amd64.zip"
sha256 "3ebd3b755e101a875a7f37f9394cd844bd35cc97557ee40a884aa8921f6348ad"
end
end

on_linux do
if Hardware::CPU.intel?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.31.5/bitrise-den-agent-linux-amd64.zip"
sha256 "8e7a34ec730c962f799bc1906eb82933e1a0b4c74c1f83f1f1182eaf872494c1"
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.33.0/bitrise-den-agent-linux-amd64.zip"
sha256 "cb5f55e5d563a7e6de48d394874681d4afd7a9e4f2eee0700bd006bbeec001d0"
end
end

Expand Down
34 changes: 34 additions & 0 deletions Formula/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
class BitriseDenAgentAT2330 < Formula
desc "CLI for Bitrise DEN agent"
homepage "https://github.com/bitrise-io/bitrise-den-agent"
url "https://github.com/bitrise-io/bitrise-den-agent.git",
tag: "v2.33.0",
revision: "70889442a7f2796ed3a0bc30f4e9a5b5585fd605"
license ""

on_macos do
if Hardware::CPU.arm?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.33.0/bitrise-den-agent-darwin-arm64.zip"
sha256 "c34bfe58d65d3f880cafce6561cf8ad56a5d8e6eb87d7c8c47321d7898599883"
end
if Hardware::CPU.intel?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.33.0/bitrise-den-agent-darwin-amd64.zip"
sha256 "3ebd3b755e101a875a7f37f9394cd844bd35cc97557ee40a884aa8921f6348ad"
end
end

on_linux do
if Hardware::CPU.intel?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.33.0/bitrise-den-agent-linux-amd64.zip"
sha256 "cb5f55e5d563a7e6de48d394874681d4afd7a9e4f2eee0700bd006bbeec001d0"
end
end

def install
bin.install "bitrise-den-agent"
end

test do
system "#{bin}/bitrise-den-agent"
end
end

0 comments on commit 180816b

Please sign in to comment.