Skip to content

Commit

Permalink
DEN Agent version update - v2.35.1
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 Jun 10, 2024
1 parent 0833e16 commit 45e3ee5
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.34.8",
revision: "c895098b8d441d4a4e6e183b960e7ee6c23fd1dd"
tag: "v2.35.1",
revision: "957606bbd8a8c04e658837e5d1cef7044c358cff"
license ""

on_macos do
if Hardware::CPU.arm?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.34.8/bitrise-den-agent-darwin-arm64.zip"
sha256 "ab70a5c7bedd9181c47f09c28a5dbe9620782711a9f08e41f188e7ac4d03121c"
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.35.1/bitrise-den-agent-darwin-arm64.zip"
sha256 "730db2ae33ce084627018f1c570e26112e25f1b86a463a56fe6d151b6bf6a5df"
end
if Hardware::CPU.intel?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.34.8/bitrise-den-agent-darwin-amd64.zip"
sha256 "7d315b476f5d7d8df0fe71f96c25f32ca5b67d95aaf22edb735e7b6a48d80c7e"
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.35.1/bitrise-den-agent-darwin-amd64.zip"
sha256 "848b116397a3a2b79572ff2d2dee2500a5054e172e25e39397a1757530c7dc08"
end
end

on_linux do
if Hardware::CPU.intel?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.34.8/bitrise-den-agent-linux-amd64.zip"
sha256 "95067235dfaca19794fde13ab5bd00296aed6f995135e6abf14df10b728c4f36"
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.35.1/bitrise-den-agent-linux-amd64.zip"
sha256 "6e60280d9a4bb06b8ac92e33eb0f8c8b78030642059ba9fa7e5356ca393e4336"
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 BitriseDenAgentAT2351 < 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.35.1",
revision: "957606bbd8a8c04e658837e5d1cef7044c358cff"
license ""

on_macos do
if Hardware::CPU.arm?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.35.1/bitrise-den-agent-darwin-arm64.zip"
sha256 "730db2ae33ce084627018f1c570e26112e25f1b86a463a56fe6d151b6bf6a5df"
end
if Hardware::CPU.intel?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.35.1/bitrise-den-agent-darwin-amd64.zip"
sha256 "848b116397a3a2b79572ff2d2dee2500a5054e172e25e39397a1757530c7dc08"
end
end

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

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

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

0 comments on commit 45e3ee5

Please sign in to comment.