Skip to content

Commit

Permalink
chore: update formula for new release. run_id 6793973114
Browse files Browse the repository at this point in the history
  • Loading branch information
move2kube committed Nov 8, 2023
1 parent 48506d1 commit f9139e9
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Formula/move2kube.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ class Move2kube < Formula
stable do
url "https://github.com/konveyor/move2kube.git",
using: :git,
tag: "v0.3.10",
revision: "1862c9c951d760a9f3e8504abb0d25161c7b541c"
tag: "v0.3.11",
revision: "73077ae4f7e79f9c7f95208963ba284407f627af"
end

bottle do
root_url "https://github.com/konveyor/homebrew-move2kube/releases/download/v0.3.10"
sha256 cellar: :any_skip_relocation, monterey: "3ea4fb88ccdb19cf2e7d2c2db455fc94ab77a613e27da7a129abcdb02a0b9f0c"
sha256 cellar: :any_skip_relocation, x86_64_linux: "068496517ff0aa6855c8f45d3a24dea0fb2c25c25c35c79c258700e503150e2b"
root_url "https://github.com/konveyor/homebrew-move2kube/releases/download/v0.3.11"
sha256 cellar: :any_skip_relocation, monterey: "d8fa3d8c74e9c713bfbc9441dfdfe058f189cbf1dcf35ec65706bab62753d540"
sha256 cellar: :any_skip_relocation, x86_64_linux: "3ff76bb383da6d47163413fe9aefebe06cf285650c284374968c1ed355c5e86d"
end

depends_on "[email protected]" => :build
Expand Down
37 changes: 37 additions & 0 deletions Formula/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
class Move2kubeAT0311 < Formula
desc "Command-line tool that accelerates migration of your app to Kubernetes/Openshift"
homepage "https://move2kube.konveyor.io/"
license "Apache-2.0"
head "https://github.com/konveyor/move2kube.git"

stable do
url "https://github.com/konveyor/move2kube.git",
using: :git,
tag: "v0.3.11",
revision: "73077ae4f7e79f9c7f95208963ba284407f627af"
end

bottle do
root_url "https://github.com/konveyor/homebrew-move2kube/releases/download/v0.3.11"
sha256 cellar: :any_skip_relocation, monterey: "f4144f0c683e7fa0fa7f87b8b1356bccc4b2b15ee186a833447da516193492a6"
sha256 cellar: :any_skip_relocation, x86_64_linux: "fef513d2d5ceda13a4f02591b953cd40bf551041dfdaab6e54b397d6871649eb"
end

depends_on "[email protected]" => :build
depends_on "buildpacks/tap/pack" => :optional
depends_on "docker" => :optional
depends_on "helm" => :optional
depends_on "kubernetes-cli" => :optional
depends_on "operator-sdk" => :optional

def install
system "make", "build"
bin.install "bin/move2kube"
end

test do
# test the version
want = "v" + version
assert_equal want, shell_output("#{bin}/move2kube version").strip
end
end

0 comments on commit f9139e9

Please sign in to comment.