Skip to content

Commit

Permalink
teleport 16.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanb committed Sep 24, 2024
1 parent 176ac3c commit 0fc4086
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions Formula/t/teleport.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Teleport < Formula
desc "Modern SSH server for teams managing distributed infrastructure"
homepage "https://goteleport.com/"
url "https://github.com/gravitational/teleport/archive/refs/tags/v14.3.3.tar.gz"
sha256 "c30cefedae3df3cacef78e385a369773820f9ed00432b3c1bd12b0026b01f144"
url "https://github.com/gravitational/teleport/archive/refs/tags/v16.4.0.tar.gz"
sha256 "fd8d0fe968bd863e3657e0cdfe7d3a5e90b0663b1efe396802f1880d2a6dde79"
license all_of: ["AGPL-3.0-or-later", "Apache-2.0"]
head "https://github.com/gravitational/teleport.git", branch: "master"

Expand All @@ -28,9 +28,12 @@ class Teleport < Formula
sha256 cellar: :any_skip_relocation, x86_64_linux: "906b35b2c7dcc5bed2b1a9897b2464b113ba6c568340f3a193cfc665f041831a"
end

depends_on "[email protected]" => :build
depends_on "corepack" => :build
depends_on "go" => :build
depends_on "pkg-config" => :build
depends_on "yarn" => :build
depends_on "rust" => :build
depends_on "rustup" => :build
depends_on "wasm-pack" => :build
depends_on "libfido2"
depends_on "node"
depends_on "openssl@3"
Expand All @@ -43,6 +46,12 @@ class Teleport < Formula
conflicts_with "tctl", because: "both install `tctl` binaries"

def install

Check failure on line 48 in Formula/t/teleport.rb

View workflow job for this annotation

GitHub Actions / Linux

`brew install --verbose --formula --build-bottle teleport` failed on Linux!

::error::An exception occurred within a child process:%0A Errno::ENOSPC: No space left on device @ fptr_finalize_flush - /github/home/bottles/logs/teleport/03.make%0A
# Show that we can use a different toolchain than the one provided by the `rust` formula.
# https://github.com/Homebrew/homebrew-core/pull/134074#pullrequestreview-1484979359
ENV.prepend_path "PATH", Formula["rustup"].bin
system "rustup", "default", "beta"
system "rustup", "set", "profile", "minimal"

ENV.deparallelize { system "make", "full", "FIDO2=dynamic" }
bin.install Dir["build/*"]
end
Expand Down

0 comments on commit 0fc4086

Please sign in to comment.