Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test-kitchen 3.6.0 #148

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Formula/test-kitchen.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class TestKitchen < Formula
desc "Tool for developing and testing infrastructure code"
homepage "https://kitchen.ci"
url "https://github.com/test-kitchen/test-kitchen/archive/refs/tags/v3.5.0.tar.gz"
sha256 "c8e01689535afed2177dc0f3fdca8c2aa1a8b9150936221827f3906c3e4fdc5f"
url "https://github.com/test-kitchen/test-kitchen/archive/refs/tags/v3.6.0.tar.gz"
sha256 "220766c3c51745dd72e3f3c3cd8c108ab05e00d792692976acef958726c72c51"
head "https://github.com/test-kitchen/test-kitchen.git"

bottle do
Expand All @@ -13,7 +13,7 @@ class TestKitchen < Formula
end

depends_on "pkg-config" => :build
depends_on "ruby@2.7"
depends_on "ruby@3.1"

uses_from_macos "libffi", since: :catalina

Expand All @@ -25,10 +25,12 @@ def install
ENV.prepend_path "PATH", buildpath/"gem_home/bin"
system "bundle", "install", "--jobs=#{ENV.make_jobs}"

system "gem", "install", "rexml", "--norc", "--no-document"
system "gem", "install", "kitchen-inspec", "--norc", "--no-document"
system "gem", "install", "kitchen-salt", "--norc", "--no-document"
system "gem", "install", "kitchen-vagrant", "--norc", "--no-document"
system "gem", "install", "kitchen-docker", "--norc", "--no-document"
system "gem", "install", "kitchen-dokken", "--norc", "--no-document"

if OS.mac?
ext_path = "extensions/#{Hardware::CPU.arch}-darwin-*/*/ffi-*/mkmf.log"
Expand Down