Skip to content

Commit

Permalink
DEN Agent version update - v2.38.23
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 Sep 25, 2024
1 parent 1c4a0b8 commit c2919e0
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.38.20",
revision: "e50d4b0b1d115d1b1c05c6653fb39953fad9e237"
tag: "v2.38.23",
revision: "9855d564fd0bf54e8cacb64f6e830752f80accdd"
license ""

on_macos do
if Hardware::CPU.arm?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.38.20/bitrise-den-agent-darwin-arm64.zip"
sha256 "339126ec48e414b6b91ee9c893444104b81190749112f5b1f9625711633987d7"
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.38.23/bitrise-den-agent-darwin-arm64.zip"
sha256 "3d44ecfa5f1a190885e9d06cd0ac747aa37a63fb53974d0a6fc5accb69262bba"
end
if Hardware::CPU.intel?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.38.20/bitrise-den-agent-darwin-amd64.zip"
sha256 "208defcaf77999f4dd0c93357673c2e089fdc64b79bddcad6f61611cc4a16af4"
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.38.23/bitrise-den-agent-darwin-amd64.zip"
sha256 "3698451bf0043340b666e50add59a21799980ddf692ae53fb23ee5a1f00c0e72"
end
end

on_linux do
if Hardware::CPU.intel?
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.38.20/bitrise-den-agent-linux-amd64.zip"
sha256 "ef18694c8237192ccaf5a0e9cfa3bafc27dcbbfbf0043df261797278571a251e"
url "https://github.com/bitrise-io/bitrise-den-agent/releases/download/v2.38.23/bitrise-den-agent-linux-amd64.zip"
sha256 "9a80a2a17dc75dca7e79148e5f32e40568bbed5d0d5dbe86ad3cc6a0c56476b2"
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 BitriseDenAgentAT23823 < 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.38.23",
revision: "9855d564fd0bf54e8cacb64f6e830752f80accdd"
license ""

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

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

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

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

0 comments on commit c2919e0

Please sign in to comment.